Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 06-28-2007, 01:31 PM   PM User | #1
Uzair
Regular Coder

 
Join Date: Aug 2005
Posts: 363
Thanks: 7
Thanked 1 Time in 1 Post
Uzair has a little shameless behaviour in the past
Question CSS Layout Help Needed Please !!!

Please view the attached file. I want to design a div based CSS layout but dont know how to make that layout. Somebody plz help. Any live example
Attached Thumbnails
Click image for larger version

Name:	layout.gif
Views:	93
Size:	1.9 KB
ID:	5400  
Uzair is offline   Reply With Quote
Old 06-28-2007, 02:36 PM   PM User | #2
daemonkin
Regular Coder

 
Join Date: Jun 2007
Location: N. Ireland
Posts: 351
Thanks: 16
Thanked 4 Times in 4 Posts
daemonkin is on a distinguished road
Are the small areas in the bottom left supposed to be separate elements?

I would do something like:
Code:
<div id="top_pane">
 <div id="top_left"></div>
 <div id="top_right"></div>
</div>
<div id="bottom_pane">
 <div id="bottom_left"></div>
 <div id="bottom_right"></div>
</div>
Then CSS:

Code:
div#top_pane div#top_left {
 display: inline;
 float: left;
 width: /*WIDTH ENTERED HERE*/
}
div#top_pane div#top_right {
 display: inline;
 float: left;
 width: /*WIDTH ENTERED HERE*/
}
and the same for the bottom.
You could float the div top_right to the right if desired.

Hope this helps to get you started.

D.
__________________
Daemonkin.
If this was helpful, please add to my reputation
Thousand Sons - Freelance Web Developer - ninetyonedegrees.com
daemonkin is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 05:02 AM.


Advertisement
Log in to turn off these ads.