Wednesday, October 14, 2009

Increase Widget Font Size in Blogger(Blogspot)

If you would like to simply icrease the font size in the widget content without installing other widgets or embedding fancy javascript, you can edit the size in the template. Go to the Dashboard, click on Layout and select Edit HTML. Now look for the text below.

 1. .widget-content { 
 2.   margin-top: 0.5em;
 3. }
Hide line numbers

You can modify this to increase the size, font, color etc of the widget content like so.
 1. .widget-content { 
 2.   margin-top: 0.5em;
 3.   font-size:110%; 
 4.   color:#FF6600;
 5. }
Hide line numbers

No comments: