How to change menu font size with "suits" theme

  • Unknown's avatar

    I’d just like to know how to change the font menu size. I just switched to this theme and i think it should be larger. I’ve already paid to make changes.

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

  • Unknown's avatar

    Hi there, since you are using a custom font, the selector s a little different from what you have in your custom CSS. Change what you have to the following.

    .wf-active .nav-menu li a {
        font-size: 15px;
    }
  • Unknown's avatar

    Hey thanks that worked perfectly!

    I’d also like to change the post title size and website header text size. What’s the code for those?

  • Post titles have the class entry-title so they can be targetted like this:

    .entry-header .entry-title {
         font-size: 30px;
    }

    Just adjust the size as you like.

    website header text size

    You can target the site title (“Coregeek”) with this:

    .site-header h1.site-title {
         font-size: 80px;
    }

    …and the tagline (“cosplay and creations”) with this:

    .site-header h2.site-description {
         font-size: 40px;
    }

    Again, just make the size whatever you wish.

    If you have any new CSS questions, it would be great if you could start a new thread. Thanks!

  • The topic ‘How to change menu font size with "suits" theme’ is closed to new replies.