Widget font

  • Hello again :)

    Is there anyway to change the font type in any of my widgets, specifically for my gallery title?

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

  • Hi, that is possible with the CSS upgrade. Your blog is protected so we can’t see the widget title.

    Have you taken a look at this page?

    https://en.support.wordpress.com/custom-design/css-basics/#toc

    It has tips on how to find the CSS that is in use for a specific element on a page or post.

  • I do have the upgrade. Unfortunately, I have never coded before so this is all new to me. I looked at that page, but it didn’t help me figure out how to define that I want the font to change just for specific titles (like the title of my gallery).

    Thanks for the reply, I will keep trying :)

  • Hi, this CSS will allow you to change the font size and title for widget titles. On fonts families, keep in mind that browser will first look for a font on the user’s computer, so if you choose a font that is not installed on all computers, your visitors will not see that font. Right now there is a Custom Font that is applied to the widget titles.

    .wf-active .widget-title {
        font-size: 1.175em;
        font-family: arial, helvetica, sans-serif !important;
    }

    For content within widgets, you can use the following to change the size and font.

    .wf-active .widget p {
        font-size: 0.715em;
        font-family: arial, helvetica, sans-serif;
    }

    The sizes show are what they are now on your site.

  • The topic ‘Widget font’ is closed to new replies.