Okay
  Public Ticket #2544628
Remove category tab from post page
Closed

Comments

  •  2
    Stefan started the conversation

    How can I remove the category tag? I found some tickets that tacled this issue but the css didn't work for some reason.

  •  8,851
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2
    Stefan replied

    Hey! how do I remove the categories on mobile? 

  •  8,851
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (max-width: 690px) {
        #ajax-content-wrap #page-header-bg[data-post-hs="default_minimal"] #single-below-header span:not(.updated), #ajax-content-wrap .row.heading-title[data-header-style="default_minimal"] .col.section-title span.meta-category {
            display: none !important;
        }
    }

    Thanks


    ThemeNectar Support Team