PDA

View Full Version : CSS Help




wfoster
May 10, 2009, 06:19 PM
http://jonasraskdesign.com/

You see the blue bar at the top where it has his links, how would I make that blue bar go in my CSS file. What would I put? Thank you. Wesley.



seventeen
May 10, 2009, 09:59 PM
in your html put something like:

<div id="whatever">content</div>

and your css would look something like:


#whatever {
width: 100%;
height: 120px; // or however tall you want it...
background-color: blue; // or the hex value of whatever color you want...
}