Viewing 11 replies - 1 through 11 (of 11 total)
  • You’ll either want to use a custom css plugin (which you can browse here), or put it into the style sheet of a child theme. If you already have the Jetpack plugin installed, you can use its Custom CSS module.

    Try adding this to the styles:

    .feat-img .comment-count {
        display: none;
    }

    Thread Starter littlestbookshelf

    (@littlestbookshelf)

    I just tried adding that to the Custom CSS module in Jetpack but nothing changed. This is what my CSS looks like:

    /*
    Welcome to Custom CSS!

    CSS (Cascading Style Sheets) is a kind of code that tells the browser how
    to render a web page. You may delete these comments and get started with
    your customizations.

    .feat-img .comment-count {
    display: none;
    }

    By default, your stylesheet will be loaded after the theme stylesheets,
    which means that your rules can take precedence and override the theme CSS
    rules. Just write here what you want to change, you don’t need to copy all
    your theme’s stylesheet content.
    */

    Thanks again for any help.

    Try changing it to:

    .feat-img .comment-count {
        display: none !important;
    }

    EDIT: I just realized you put the css in the comment area. It needs to go after the last */.

    Thread Starter littlestbookshelf

    (@littlestbookshelf)

    I just tried that as well but still no luck ??

    See my edit above.

    Thread Starter littlestbookshelf

    (@littlestbookshelf)

    Thank you so much! That did it ??

    That’s great! Go ahead and mark this resolved if you don’t mind.

    Thread Starter littlestbookshelf

    (@littlestbookshelf)

    On the stretched images problem, try:

    .article-container article .feat-img {
        height: auto;
    }

    Thread Starter littlestbookshelf

    (@littlestbookshelf)

    That worked perfectly. Thank you so much.

    You’re welcome!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Layout Glitches’ is closed to new replies.