• I’m only focused on the mobile view – not the desktop view.

    I’m trying to style the post page. For instance, I want to hide the part below that has Archives, Categories, Meta. Also, I want to hide ‘Previous’ and ‘Next’. Lastly, in the header, one of my icons (the search icon) is not loading correctly.

    How can I do this?

    Thank!

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

Viewing 1 replies (of 1 total)
  • Hi there, it looks like you’re mixing the theme with Elementor. The search icon, for example, is coming from Elementor, so you’d want to double check with them on that.

    You can use something like this to hide the parts of the page you don’t want to display:

    @media screen and (max-width: 360px) {
       .nav-links, .widget-area {
         display: none;
       }
    }

    Hoping this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Trying To Edit The Post Theme’ is closed to new replies.