HOW TO: Add Background Color To Widgets Title-BLOGGER




Hello,in this post I'm gonna show you how to add background color to widgets title.This is, in my opinion, the easiest way to add background color.Let's get started:



1.Login to blogger


2.Go to template and click Edit Html


3.In Html search for ]]></ b:skin> 

                                                                                                         
4. Copy the code and paste it before  ]]></ b:skin> 
   

.sidebar h2, .rsidebar h2, .lsidebar h2 {

    background:#000000;
    color: #FFFFFF;
    font-family: verdana,arial;
    font-size: 12px;
    font-weight: bold;
    height: 33px;
    margin: 0;
    padding: 3px 0 3px 7px;
    text-transform: uppercase;}

  

To center the title add

 .sidebar h2 {text-align:center !important;}




Change the colors how you want  and click save.