Titles in Oxygen Theme Are Huge!

  • Unknown's avatar

    The title font in the oxygen theme is way too large! The toolbar size is good. How do I decrease the title font in slider and post pages without decreasing the tool bar size!!????

    HELP PLEASE!!

    Carolyn

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

  • Unknown's avatar

    Hi there, for the post slider, add this and then adjust as desired.

    .wf-active .featured-post .entry-title a {
        font-size: 0.94em;
    }

    On the post titles on the main page, they don’t look to large, so I would think you might be talking about the single post pages. In that case, you would use the following.

    .wf-active .single .entry-title {
        font-size: 1.88em;
    }
  • Unknown's avatar

    Perfect! But when I use another code to minimize the titles under the recent articles, it minimizes the toolbar headings as well. Below is the code I used.

    }
    body {
    font-size: 80% !important;

  • Unknown's avatar

    The styling set in body is typically a base styling, but in most cases other text elements, such as titles, are specified in other, more specific CSS rules. On your site, you would need to use the following CSS to adjust the titles in the Recent Articles section.

    .wf-active .entry-title {
        font-size: 1.25333em;
    }
  • The topic ‘Titles in Oxygen Theme Are Huge!’ is closed to new replies.