Simple Solution to remove/hide tags from your front page Excerpt.

  • sghegde87

    #8040

    If you have a static page where you display all posts but want to hide/remove the tags,

    Just add the following code to the style.css file of Child theme.

    .post-tags {
    font: 0px tahoma;
    }

    Hope it helps.

    I couldn’t find the answer anywhere and then I figured it out myself. Thanks to Firebug.

    Mod

    Kenneth John Odle

    #40174

    Even better:

    .home .post-tags {
    display: none;
    }

    This will hide the tags only on the home page. Using font: 0px is not appreciated by some/most search engines.

    sghegde87

    #40175
    Quote:
    .ho

    @Kenneth : Nice one.. Works fine… Thanks…

    Do you mind telling me how do you figure all these out?? or should I ask ‘where’?

Viewing 3 posts - 1 through 3 (of 3 total)

  • You must be logged in to reply to this topic.