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?
Hey!
Try adding this code to the Quick CSS:
.home .sidebar {
position: relative;
top: 350px;
}
Cheers!
Josue
Thanks Josue, it works!
Hey!
Try with this code:
.home .sidebar {
position: relative;
top: 420px;
}
The result should be:
Best regards,
Josue
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
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.
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