Okay
  Public Ticket #2303604
removing blog category from posts
Closed

Comments

  • ConnieBeddow started the conversation

    Hi there,


    Please can you tell me how to remove the category bit at the top of my blog post. All my posts are going to be the same category so I don't need it to be displayed and it currently just says uncategorised. 

    THanks

    Connie 

  •  3,022
    Andrew replied

    Hi Connie,

    Use the following custom css:

    #page-header-bg .uncategorized{ 
        display:none !important;
    }
    

    Hope this helps.

  • ConnieBeddow replied

    Hi Andrew, thanks for replying, but it didn't work. DO I need to add this into the general custom CSS box or on the indivisual pages? I want to remove from the top of individual post and also excerpts?



  •  3,022
    Andrew replied

    Hi Connie,

    Can we have a link to your website we see possible css for that. You can place it in Salient > General settings > CSS/Script related.

    Hope this helps.

  • ConnieBeddow replied

    Hi Andrew, I placed the copy in there but it didn't work. Sure my website is http://dev3.runforthehills.com

    Thanks

  •  3,022
    Andrew replied

    Hi Connie,

    Try the following:

    .inner-wrap .uncategorised {
        display: none !important;
    }
    .meta-category .uncategorised {
        display: none !important;
    }
    

    Hope this helps.

  • ConnieBeddow replied

    Ah brill it worked! thank you very much for your help!