View Single Post
Old 06-18-2008, 02:57 PM  
MetaMan
I AM WEB 2.0
 
Industry Role:
Join Date: Jan 2003
Posts: 28,682
Quote:
Originally Posted by jscott View Post
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>
MetaMan is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote