• Resolved Maman_

    (@maman_)


    Hi everyone !

    I would like to remove all the header on category pages (icon and title) but don’t know how to do it.

    I tried this with CSS Custom :

    .archive-header {
    content: none;
    }

    but obviously that doesn’t work ^^’
    Maybe it’s not only in the CSS

    I also would like to remove the line where is wrote : posted by “user” the “date”
    This line is displayed on post but i don’t know where i can find it
    I think this task is pretty easy but it look like i’m pretty bad ^^’

    Thanks for help !

Viewing 2 replies - 1 through 2 (of 2 total)
  • For the category titles, use:

    .category .archive-header {
        display: none;
    }

    For the “meta” line, you need:

    .entry-meta {
        display: none;
    }

    or if you only want it to affect the category archives, then you can use:

    .category .entry-meta {
        display: none;
    }

    which restricts it only to a category page.

    I think this task is pretty easy but it look like i’m pretty bad ^^’

    Yes, it’s very easy if you spend 6 minutes watching the video linked to here: https://www.themesandco.com/snippet/firebug-best-spent-6-minutes/

    Thread Starter Maman_

    (@maman_)

    Oh yeah you’re right, thanks you for help and the video
    Sorry for making you waste your time !

    Bye and I hope I will don’t come back again ^^’

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Categories Header’ is closed to new replies.