In your theme, use custom.css to override whatever rules apply to that message. To find that, use Firefox's Firebug plugin or Chrome's Inspect Element (right click).
I'm looking more at changing the tags surrounding the message. For example using h2 instead of h4 because I'm using h4 in another location where I would not like to change it.
In your theme, use custom.css to override whatever rules apply to that message. To find that, use Firefox's Firebug plugin or Chrome's Inspect Element (right click).
Answers
Just change the css for that h4 tag.
There was an error rendering this rich post.
If you have a div class called Dave and one called Eric, you can style h4 for each..
Like :
.dave h4 {font-size:32px;color#212121;} .eric h4 {font-size:22px;color#3399ff;}
There was an error rendering this rich post.
There was an error rendering this rich post.