Change widget title and content font style

  • Unknown's avatar

    Hi, need help with the following:

    (1) Widget title is automatically in CAPS font. What CSS code do I use to change it to Titles font?

    (2) If I want to change the font color of specific words in the text of the widget or to place the words in bold, how do I go about doing this?

    Thanks.

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

  • Unknown's avatar

    Hi there,

    (1) Widget title is automatically in CAPS font. What CSS code do I use to change it to Titles font?

    I see you have accomplished this with the following CSS.

    .widget-title {
        text-transform: inherit;
    }

    You can also do this by setting text-transform to none. With inherit, sometimes the a parent element may also have it set to uppercase, in which case inherit would inherit the same setting.

    (2) If I want to change the font color of specific words in the text of the widget or to place the words in bold, how do I go about doing this?

    It looks like you have accomplished this also. Are there other widgets you want to do this with?

  • The topic ‘Change widget title and content font style’ is closed to new replies.