Hexadecimal Colour Codes :How to use them


Color codes
Color codes
*TIP You have to must use # before writing hexa-  decimal code for colour.



















For example we want to use green colour  with code(003300) so will write code for this as below
background-color="#003300";

Blogger Header: How To Customize It

Blogger is superb platform to blog about any thing.It gives full freedom to Its user to customise any part .Here we will discuss that how to customise a blogger header.If you are anew be on blogger and Even does not know about XML and CSS.Then You are at right place .


Customising Header Text:
1.Go to Design section of your blog .
2.Then go to template designer.
3.Click On advance tab.
4.Click on add CSS
5.Paste the following code there.

copy this code:

.header h1 {
 text-align: center;
 font-family : Tahoma;
 color :BLUE;
 background-color : light green;
 border-bottom: 2px solid black;
 border-top:2px solid black;
 border-left: 2px solid black;
 border-Right: 2px solid black;
 padding: 0px;
spacing:0px;
 }
Text-align attribute will align your text at position
 it can be CENTRE, LEFT,RIGHT you can change their values according to your self.

Back-ground color will define the colour of your background you can put the hexadecimal colour code or simply colour name.
List of hexadecimal colour and their codes
border-top,border-bottom... etc will draw a border line in your header.font family will describe font of your header.
color will describe the text colour of your header.

padding will define the distance of your page border from header block.