Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'footer'

Home / Forums / Search / Search Results for 'footer'

Viewing 20 results - 681 through 700 (of 6,751 total)
  • Author
    Search Results
  • #258704

    Hi Ben,

    I saw you already implemented the fix for https://www.kadencewp.com/support-forums/topic/alignment-issue-in-footer-row-bug/#post-258624. AWESOME :)!

    I posted a feature request for sontent alignment options, tomake this more consistent:

    https://www.kadencewp.com/roadmap-kadence-theme/feature-requests/content-alignment-options-for-all-header-footer-elements-content-align-content-vertical-align/

    This thread can be closed. Thank you for your blazing fast fixes!

    Have a great day,
    Tobias

    #258702
    This reply has been marked as private.
    In forum: Kadence Theme

    In reply to: author.php

    #258577

    Hey,
    You can’t make a child of a child. I suggest using a plugin like this to add your custom PHP or css: https://wordpress.org/plugins/code-snippets/

    If you absolutely need a child theme then you would have to use the bold child theme and add your edits to it. It’s not ideal.

    Virtue uses a wrapper function to wrap templates, if you want to make a custom template you would need to follow the example of what’s in page.php which you will see doesn’t have a header or footer call and uses some important div structure classes to make sure the content is setup with the sites max width.

    In a case where you just want a map with multiple markers I would strongly suggest just using a plugin that allows you to do this vs going through this older tutorial which will require you manage a lot of development to create the map.

    I hope that helps!

    Ben

    #258547
    This reply has been marked as private.
    #258546

    Hey,
    Hope you enjoyed your weekend!
    1. Is this only happening in the backend? The extra space will show in anticipation of a new block being added. Though if a new block is not added the spacing should be removed on the live site.

    2. Does this happen when you actually view from a tablet, or only when viewing the tablet mode from desktop? Have you cleared your cache?

    3. I’m seeing that pull from your global palette, but you can make it specific with css like this:

    #colophon .site-bottom-footer-wrap .site-footer-row-container-inner a {
        color: #fff;
    }

    4. I’ll see what insight the developer has on this.

    Best,
    Hannah

    In forum: Kadence Theme

    In reply to: Some UI improvements

    #258479

    Ditto! Especially #3 (Header/Footer builder should be open for use to build just like a page and post.)

    Cheers!
    Doug

    In forum: Ascend Theme
    #258455

    Hello Jake,

    Thanks for reaching out to us.

    Kindly add this CSS as well to make the separator overlap with the footer:

    .home #containerfooter {
        margin-top: -30px;
    }

    Hope this helps.

    Best Regards,
    Karla

    #258424
    This reply has been marked as private.
    #258357

    Hi there,

    i found a bug. It’s not possible to set the alignment for mobile in footer row on the right column.

    I added Footer Navigation to:

    Footer Bottom row – right column.

    Desktop: Content align: right – WORKING!
    Tablet: Content align: middle – WORKING!
    Mobile: Content align: middle – aligned on the right instead in the middle.

    Best regards :)!

    EDIT: It isn’t working in customizer, but it is working in frontend.

    • This topic was modified 5 years, 6 months ago by Netzlichter.
    #258300

    I have created my website using the Ascend Shopping template as a reference. I created the home page using page builder and placed a three arrow row separator that is supposed to overlap the footer section. The only way I can get the row separator to appear is by adding a bottom margin of 30px. But when I do that, there is a white space (like an empty row) behind the arrows. If I don’t add a bottom margin, the row separator doesn’t show at all. How do I get the row separator to show and look like it’s overlapping the footer (similar to the Ascend Shopping demo)?

    Link to the website:

    In forum: Ascend Theme

    Topic: css question

    #258166

    Hello Support team!

    On the first row of this homepage (under Kadence Slider), I use a 1 px top border with color #ac6382.

    Is this possible to change this top border color to a gradient color, with some css? Weight should be eg. 7 px, not 1 px.

    I’m using this gradient color eg. in ‘sitewide footer cta’, and ‘footercredits’:

    .kt-call-sitewide-to-action {
    background: linear-gradient(90deg, rgba(172,99,130,1) 0%, rgba(149,74,135,1) 53%, rgba(126,49,146,1) 100%);
    }

    Thanks a lot,
    Anita

    In forum: Kadence Theme

    In reply to: Header CSS bug?

    #258115

    HI,

    I don’t suggest you do this, you can turn off the header and footer right in your page settings : https://kadence-theme.com/docs/page-post-specific-layout-settings/

    If for some reason you do want to do this with css use:

    #masthead as the selector for the header.

    Ben

    #258111

    Hi, the mobile menu has a custom walker for the submenu navigation so it doesn’t run through that filter.

    That wouldn’t work anyway because the mobile navigation is a popout and you can’t have a popout on a popout. The only way to do this then would be to trigger a close of the menu then open the login panel.

    So if you made the class for the menu item “kt-custom-login-pop-modal”

    Then you can add this javascript in your footer scripts in your theme options:

    <script>
    jQuery(document).ready(function($) {
        	$('.kt-custom-login-pop-modal a').on('click', function(e) {
        		e.preventDefault();
    var popup = $.magnificPopup.instance; 
    popup.close();
    setTimeout(function() {
    popup.open({
    	    		items: {
                        type: 'inline',
    		    		src:'#kt-extras-modal-login',
                    },
    removalDelay: 0,
                    callbacks: {
    				    open: function() {
    				    }
    				 },
    	    	});
    }, 220);
    	    });
      });
    </script>

    Ben

    In forum: Kadence Theme
    #258110

    Hi Kadence,

    I’m trying to build a landing page without a header and footer. I applied the following CSS:
    /** General >> Main header site header row container inner **/
    #main-header .site-header-row-container-inner {
    display: none;
    }

    /** General >> Colophon site footer row container inner **/
    #colophon .site-footer-row-container-inner {
    display: none;
    }

    This doesn’t show it on the desktop, but it does show it on tablet and mobile. Why doesn’t it hide it on tablet and mobile? Here is a quick screen recording of the issue:
    Kind regards,

    Henri

    In forum: Kadence Theme

    In reply to: Styling the Side Cart

    #258004

    After deactivating elementors header and footer tempates did you clear your cache?

    Hannah

    In forum: Kadence Theme

    In reply to: Styling the Side Cart

    #257955
    This reply has been marked as private.
    #257945

    Dear Hannah

    could please help me minimize or bring up a bit between the featured product and icon image? Also the gap between testimonial custom carousel and footer?

    To be clear you can see my attached screenshoot. I marked it with red arrow. I see there is quite a gap between two. Please help me how to adjust it to get the gap closer to each other. Thanks

    my url is ine/

    In forum: Kadence Theme

    In reply to: Styling the Side Cart

    #257941

    Hey John,
    Looks like you’re using the Elementor header and footer. Have you tried disabling this? Can you post a link?
    Thanks!

    Hannah

    In forum: Kadence Theme

    In reply to: Footer Link

    #257872

    Hello David,

    Thanks for reaching out to us.

    Kindly check your Link Colors option on Customizer > Footer > Row setting and see if the same color is selected. Here’s a screen recording for your reference.

    Hope this helps and let us know if we can assist you further.

    Best Regards,
    Karla

    In forum: Kadence Theme

    Topic: Footer Link

    #257850

    As you can see in the Customizer image I have footer navigation on the right, and on the left I created a new menu which is place in Widget 1 to link to the privacy policy, the link shows in the Customizer but in the site the link is there but the same color as footer background. Bug or am I doing this wrong. Tried to do it by linking from a text widget and it did not work.

Viewing 20 results - 681 through 700 (of 6,751 total)