Home Forums Azuma How can you change the font size of post Author and post date above each post

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #15850
    guido
    Participant

    At this moment the post author and date show up with font size 26 which is way to big.
    I’ve looked in the customizer but don’t find any place where I can change this.
    also tried several CSS options but nothing….

    • This topic was modified 1 year, 7 months ago by Andy. Reason: Moved from Azuma Pro to Azuma
    #15853
    Andy
    Keymaster

    You can change this with some custom CSS added to Appearance > Customize > Additional CSS.

    This will change the font size of both author and post date:

    .single .entry-meta {
      font-size: 16px;
    }

    If you want to make author and post date different sizes, use the following CSS instead.

    For the author name:

    .single .entry-meta .byline {
      font-size: 18px;
    }

    For the post date:

    .single .entry-meta .posted-on {
      font-size: 16px;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Azuma’ is closed to new topics and replies.