Wednesday, August 28, 2013

How to customized Gadget or Widget title attributes for Blogspot


What you are going to do is just playing with the codes in the brackets of .sidebar h2 { }

You can change the font size, font color, font style, or background color of your gadgets/widgets title by following these simple steps.
  1. Sign in to your Blogger account
  2. Select the blog you want to customize
  3. Go to Template > Customized > Advanced > Add CSS
  4. Copy these simple codes on your preferences
(a) To align the widget title in the center (right/left)
.sidebar h2 {
text-align:center;
(b) To change the background color of widget title
.sidebar h2 {
text-align:center;
background-color:#999999
}
(c) To change the font color, font size, font style of widget title

          .sidebar h2 {
          text-align:center;
          background-color:#999999;
          color: #000000;
          font-family:Verdana;
          font-weight:bold;
          font-style:italic;
          font-size:150%;
          text-transform:uppercase;
          }

Finally click "Apply to Blog" to save your codes.

Simple je kan! Selamat belajar! (^_^)



No comments:

Post a Comment