Increase Widget Title Font

  • Unknown's avatar

    OK I tried everything I could think of using CSS to increase the font of the widget titles and can’t figure it out. Would love some help – thank you!

    http://www.ctfmli.org

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

  • Unknown's avatar

    Have you tried adding the following to your Custom CSS?

    .wf-active #secondary .widget-title {
    font-size: 20px;
    font-weight: 400;
    }

  • Unknown's avatar

    Ah PERFECTION! Thank you!

    While I have you – I have one other problem that I’m trying to fix. When I add “CT” to my site title it bumps onto another line. Is there a way to make it so that it all stays on one line?

  • Unknown's avatar

    Glad it worked for you. Adding CT to your title is a bit more work.

    There’s a “header-auxiliary” section to the right of the Site Title that is currently hidden using display: none in the CSS.

    Expanding the Site Title to a wider width will cause that section to drop below your Site Title, adding a lot of space between the Site Title and your navigation.

    On possible solution for you is to increase the width for the Site Title and decrease the width for the header auxiliary section. Here’s one possible solution:

    #header #branding {
        width: 680px;
    }
    #header-auxiliary {
        width: 200px
    }
  • Unknown's avatar

    That worked perfectly as well. Thank you for your fast responses and terrific solutions. Can’t thank you enough.

  • Unknown's avatar

    You’re welcome Shelly. Glad my responses helped you out.

  • The topic ‘Increase Widget Title Font’ is closed to new replies.