Hi, if you view the link below, you will see the sidebar on the right side, and it also appears down below the post. I would like it to only appear beside the post, unless its mobile, then it can go down below the post. Something seems wrong.
Thanks
Hey LifeIsNow001,
Could you also provide login details to your WordPress dashboard so that we may have a closer look. You can place the details in the Private Data section of your reply.
Best regards,
Jordan
Thank you!
Hi!
Try to add this code in Quick CSS (located in Enfold > General Styling):
#main .entry-content-wrapper .widget_recent_entries {
display: none;
}
@media only screen and (max-width:767px) {
#main .entry-content-wrapper .widget_recent_entries {
display: block;
}
}
Let us know if it works :)
Best regards,
Nikko
Thank you, because the CTA button, the recent posts and the search were all doubling, i had to change your code a bit, but you got me the right ID’s and classes to get it done. Thank you
#main .entry-content-wrapper .widget_recent_entries ,#main .entry-content-wrapper .textwidget, #main .entry-content-wrapper .widget_search {
display: none;
}
Hi!
Glad we could help :)
Regards,
Nikko