June 13, 2015

Change Font Size And Alignment Text Below Sidebar Widget Title With CSS For Blogger

|
A quick tip on how to change the font size and also bold the text below the sidebar widget title.

Plus how to align the text to the left for those of you who are using Blogger Simple template by Josh Peterson.

This is what you do:

1. Log in to your Blogger account.

2. At the Dashboard, pull down the slider and click on "Theme".

3. Then click on the "Customize" button.

4. Next click on "Advanced".

5. Pull down the slider and click on "Add CSS". A box will appear next to it.

6. Now paste the code below in the empty box provided.

.widget li {
font-weight:bold;
font-size:14px;
text-align:left;
}
Note: You need to change the number 14px to whatever size that suits you. If you do not want to bold the text, then remove the line: text-align:left;

7. Finally click on "Apply to Blog" button.

That's all you need to do.