Hi How can i hide my header text the same size ? Header 1 is so big and then it goes smaller up to header 6 Is there a way to either hide it because im using it more as tags for the serps or maybe to something with it so that it doesn't spoil my website Cheers
Thanks I heard about this method but never got around to look into it. I dont know much about coding or css but i guess this is a nice small task to get started Cheers
to style headers, do this h1 {font-size: 2em; colour: #000000} h2 {font-size: 1.5em; colour: #FFFFFF;} /* etc etc */ HTML: If you are not sure which style to use regarding font, then I suggest you a post I posted last week. http://csschat.com/showthread.php?t=26
This is how my source code look when i entered the header codes yesterday ( Blue ) <HEAD> <TITLE> Cell Phones</TITLE> <meta name="Description" Cheap Cell Phones."> <meta name="Keywords" Cell,Phones,.......... "> <META NAME="Author" CONTENT=" Me "> <meta name="robots" content="index,follow"> __________________________________________________ <h1>Cell Phone Equipment</h1> <h2>Cell Phone Chargers</h2> <HEAD> <TITLE> Cell Phones</TITLE> <meta name="Description" Cheap Cell Phones."> <meta name="Keywords" Cell,Phones,.......... "> <META NAME="Author" CONTENT=" Me "> <meta name="robots" content="index,follow"> Should i do something like this instead: <HEAD> h1 {font-size: 2em;colour: #000000} <h1>Cell Phone Equipment</h1> h2 {font-size: 1.5em;colour: #FFFFFF;} <h2>Cell Phone Chargers</h2> <TITLE> Cell Phones</TITLE> <meta name="Description" Cheap Cell Phones."> <meta name="Keywords" Cell,Phones,.......... "> <META NAME="Author" CONTENT=" Me "> <meta name="robots" content="index,follow">