Widget Font Color

  • Unknown's avatar

    I have text box widgets that I would like to change the font color for. I want it to match the font color that is in my blog posts (gold font). Please help!

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

  • Unknown's avatar

    The easiest way to do that is to take the text from the widget, paste it into a draft post, apply the color you want to that text and then switch to the HTML tab in the editor, copy all of the text and code out and put it back into the text widget.

    If you don’t want to do that, then open up the text widget, make a blank line above the text, and insert this.

    <div style="color: #FFCC00;">

    Then go to the very bottom of all the text in the widget and add the ending div tag.

    </div>

  • Unknown's avatar

    Actually I see you have the Custom design upgrade, so you can also add this to your CSS.

    .widget-title {
    color: #BC8E0B;
    }
    .textwidget {
    color: #FFCC00;
    }`

  • Unknown's avatar

    Actually I see you have the Custom design upgrade, so you can also add this to your CSS.

    .widget-title {
    color: #BC8E0B;
    }
    .textwidget {
    color: #FFCC00;
    }
  • Unknown's avatar

    Ignore the first post and use the second. I forgot one of my code tags in the first.

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