Quote:
Originally Posted by jscott
can you or somebody help direct me on how i can insert a 950width x 140height header into my asian porn blog -> www.asian-blogs.com please
pretty please 
|
i wont go into the page exactly but i am guessing something like this:
in the css file:
#header {
width: 950px;
height:140px;
float:left;
}
if you want to center it:
#header {
width: 950px;
height:140px;
float:left;
margin: 0 auto;
}
if it end up aligning wrong and tucking next to a div do:
#header {
width: 950px;
height:140px;
float:left;
margin: 0 auto;
clear:both;
}
so then in the page its:
<div id="header">content here</div>