• At the moment I have two buttons underneath the header which is set to slider mode. Could anyone tell me how I can add the buttons in the center over the slider images in the header?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @gisellek84

    I strongly recommend that you consult your page builder’s documentation or ask its dedicated support team. There may be a built-in solution/element to do this. For WPBakery Page Builder, it’s right here: https://support.wpbakery.com/ This would be a more reliable and longer-lasting solution.

    However, if it’s not something possible, here is a CSS snippet that should work:

    /* Homepage: Move Buttons on Top of Slider
     * https://www.ads-software.com/support/topic/buttons-overlayed-on-top-of-slider/
     */
    body.page-id-9 #main {
        padding-top: 0px;
    }
    
    body.page-id-9 #content > div:first-child {
        margin-top: -60vh;
    }
    
    body.page-id-9 #content > div:first-child + div {
        margin-top: 60vh;
    }

    Please note this will move up the first section following the slider on the page id #9 only. Feel free to adjust -60vh and 60vh sizes if needed, but be sure to keep both identical.

    Add the snippet to your Additional CSS tab of the Customizer.

    Best of luck!

Viewing 1 replies (of 1 total)
  • The topic ‘Buttons overlayed on top of slider’ is closed to new replies.