Tuesday, May 7, 2013

How To Tuesdays: Option 5 - How To Center Your Post Title, Date and Gadget Headers on Blogger

Disclaimer: Always keep in mind, I am not a licensed blog developer so make sure you save your HTML before you add any new stuff, not just from me but from anyone. Your blog is way too important to mess around with :-)

Again,
First thing you need to know is this:

Step 1: Got to Layout on the Blogger Home page
Step 2: Click Advanced
Step 3: Go to "Add CSS"

This menu is about to be your best friend :-)

Option 5 - How To Center Your Post Title, Date and Gadget Headers on Blogger
This is pretty easy, continuing from above,

Step 4: In case you have any other CSS codes added, press enter to skip a line and to make sure you don't mess up any of your coding.

Step 5: To center your Post & Date Titles

.post-title {
text-align:center;
}

.date-header {
text-align:center;
}


Step 6: Check it out

Step 7: to center your Gadget Headers in Blogger:

.widget {
  text-align: center;
}
 Step 8: Check it out

No comments:

Post a Comment