• Hi,

    The titles of posts are too big on archive pages, category pages and tag pages when they appear both on a mobile and a tablet. They look fine on PC screens. I would like to have a CSS code to improve this.

    Thank you in advance,

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @green4547,

    Try adding this CSS code to Appearance > Customize > Additional CSS from dashboard.

    @media only screen and (min-width: 576px) and (max-width: 991px) {
      .blog .posts-layout .entry-title,
      .archive .posts-layout .entry-title,
      .tag .posts-layout .entry-title {
        font-size: 24px;
      }
    }
    
    @media only screen and (max-width: 575px) {
      .blog .posts-layout .entry-title,
      .archive .posts-layout .entry-title,
      .tag .posts-layout .entry-title {
        font-size: 24px;
      }
    }

    Hope that helps.

    Thread Starter green4547

    (@green4547)

    Hi @kharisblank ,

    It works perfect!

    Thanks,

    • This reply was modified 1 year, 7 months ago by green4547.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post titles too big on archive pages on smaller screens’ is closed to new replies.