Okay
  Public Ticket #1484686
Category links in header
Closed

Comments

  • tagbytes started the conversation

    Hi,


    How can I remove these related category links. While they look ok on desktop, they take up too much room on mobile. I'd like to remove on mobile or altogether.


    Thanks,

    Jamie

  •  9,016
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 1000px) and (min-width: 1px) {
        body[data-button-style*="slightly_rounded"] #page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a {
            display: none !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • tagbytes replied

    Fantastic, this looks much cleaner, thank you.