Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #713777

    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

    #713836

    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

    #713889

    Thank you!

    #714808

    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

    #714866

    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;
    }
    #714872

    Hi!

    Glad we could help :)

    Regards,
    Nikko

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