HTML Tutorial


 /help/HTML Help Forum   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
setting two different back ground colours..
Post new topic   Reply to topic    HTML Help Forum -> General HTML
View previous topic :: View next topic  
Author Message
phibs14



Joined: 09 Oct 2009
Posts: 15

PostPosted: Sat Oct 10, 2009 2:53 am     setting two different back ground colours.. Reply with quote

this is the code I have on one page at the moment.


<style type="text/css">
body {
background: #383838;
}
</style>


However I want to have the top 1/3 of the page in a darker grey.
what do I need to add to the code above.. I've tried using frames but this just mucks up the whole site...

any help appreciated. thanks in advance.
phibs14
sticks464



Joined: 31 Dec 2006
Posts: 2627

PostPosted: Sat Oct 10, 2009 6:06 am     Reply with quote

Until css3 is supported by all browsers you'll have to use a couple of div's to accomplish two backgrounds.

The css
Code:
body {background: #383838}
#color {
   background:#ccc;
   height:33%;
   width:100%;
   position:absolute;
   top:0;
   left:0;
}
#inner {
   position:relative;
   width:78%;/*can be any width*/
   margin:0 auto;/*remove if 100% width*/
   padding:10px 0;
   z-index:999;
}


The markup
Code:
<div id="color"></div>
<div id="inner">
...all content here...
</div>
phibs14



Joined: 09 Oct 2009
Posts: 15

PostPosted: Sat Oct 10, 2009 6:36 am     Reply with quote

thanks again! works perfect - I'm slowly getting there!.. Very Happy
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum -> General HTML All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
DARFUR
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial