• Resolved zs33

    (@zs33)


    Hi
    i removed categories and comments from the excerpt with this code:

    .subhead {
    display:none;
    }

    but its still visible on the mobile. when i narrow the window on my laptop (chrome) it stays invisible though.
    whats the problem?
    thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter zs33

    (@zs33)

    the just in cease
    https://zielonysrodek.pl/

    In your css you have

    @media (min-width: 500px) {
    h2.entry-title {
    width:550px;
    }

    But your not closing out the media query so all your css after that point has that media query. When you get below 500px then none of the css after appiles.

    Just add in the closing bracket.

    @media (min-width: 500px) {
    h2.entry-title {
    width:550px;
    }
    }

    Kadence Themes

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘removed categories from post but still visible on mobile’ is closed to new replies.