Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #277725

    Hi,
    I put a Call to Action widget on my right sidebar but it’s overlapping the slider. Is there any way I can push it down just under the slider?

    #277753

    Hey!

    Try adding this code to the Quick CSS:

    .home .sidebar {
        position: relative;
        top: 350px;
    }

    Cheers! 
    Josue

    #277771

    Thanks Josue, it works!

    • This reply was modified 9 years, 9 months ago by yes9310.
    #277776

    Hey!

    Try with this code:

    .home .sidebar {
        position: relative;
        top: 420px;
    }

    The result should be:

    Best regards,
    Josue

    #277898
    This reply has been marked as private.
    #277900

    Try using a percentage value. Also, you can use media queries to adjust the value depending on the screen size:

    @media only screen and (max-width: 1030px) {
    .home .sidebar {
        position: relative;
        top: 200px;
    }
    }

    Please note that offering fixes for third-party plugins is out of the support scope we can offer.

    Regards,
    Josue

    #277921

    Hi, Thanks Josue, but this is not a third party plugin. This is trying to get an Enfold widget positioned below that slider that came with the theme. :-) It still doesn’t work though.

    #277923

    I believe you are using this plugin, correct me if i’m wrong.

    Anyways, i think a good workaround could be to use column elements here and use the Widget element (to include the cta widget) instead of a Sidebar.

    Regards,
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.