change font size/style of footer metadata on Chalkboard theme

  • Ok..
    i want to change the font of the footer metadata (the posted date and tags at the end of a post). I would like it to be the same font as the body but smaller size.

    i tried finding the answer in the forum and elsewhere online. I searched the code on the style sheet for the chalkboard theme (https://wpcom-themes.svn.automattic.com/chalkboard/style.css) and cut and paste and altered numbers (which worked with other some of my other CSS formatting needs) but nothing seems to work.
    e.g. I tried things like
    .entry-meta {
    font-family: ‘Gloria Hallelujah’, Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-size: 1.3rem;
    }
    Please help.

    The blog I need help with is: (visible only to logged in users)

  • Hi, the font stack being applied to the body text on your site right now is:
    ff-basic-gothic-web-pro-1,ff-basic-gothic-web-pro-2,"Roboto",Arial,Helvetica,sans-serif
    which is the same as the font being applied to the entry meta (except for the size and it is set to italic). Add the following to make it the same size and set it back to normal font style instead of italic.

    .entry-meta {
    font-style: normal;
    font-size: 18px !important;
    }
  • Excellent. Thanks!

  • The topic ‘change font size/style of footer metadata on Chalkboard theme’ is closed to new replies.