layout sizing help

This is a discussion on "layout sizing help" within the Web Page Design section. This forum, and the thread "layout sizing help are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Mar 1st, 2006, 19:56
Junior Member
Join Date: Nov 2005
Location: Portland, OR
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
layout sizing help

Agh! I feel crazy after fighting with CSS!
Can someone tell me how to make this website look right on a smaller monitor? It looks terrific on my monitor at work, but I'm only so lucky to have a 1024x768 monitor! Should I try and do a fixed width on the layout? It seems like the images I place in the center column screw the layout up?? Help!

www.craftwarehouse.com/new

Code: Select all
#pageWrapper
{
margin: 0;
width: auto;
min-width: 500px;
}
#outerColumnContainer
{
z-index: 1;
border-color: #fff;border-style: solid;
border-width: 0 15em; }
#innerColumnContainer
{
z-index: 2;
width: 100%;
}
* html #innerColumnContainer
{
position: relative; }
#contentColumn
{
margin: 0 -1px; width: 100%;
}
#leftColumn, #rightColumn, #contentColumn
{
float: left;
position: relative; 
z-index: 10;
overflow: visible; }
#rightColumn
{
float: right; 
width: 15em;
margin: 0 -15em 0 1px; 
text-decoration: none;
}
#rightColumn ul li {
list-style-type:none;
}
#leftColumn
{
width: 15em;
margin: 0 1px 0 -15em; 
}
#footer
{
position: relative;
}
#masthead h1
{
display: inline; 
}
.nobullets ul li {
list-style-type: none;
}
.clear
{
clear: both;
padding-bottom: 1px; 
margin-bottom: -1px; 
}
.hide, #oldBrowserNotice, .ieSixCharDupBug
{
display: none !important;
}
#contentColumn
{
border-width: 0; }

Last edited by herkalees; Mar 7th, 2006 at 22:16.
Reply With Quote

  #2 (permalink)  
Old Mar 3rd, 2006, 00:33
Reputable Member
Join Date: Jul 2005
Posts: 400
Thanks: 0
Thanked 0 Times in 0 Posts
Re: layout sizing help

Looks like your images are the problem! Try using divs and putting the images as backgrounds. The divs will allow more adjustment to browser width changes.
Reply With Quote
  #3 (permalink)  
Old Mar 7th, 2006, 17:55
Junior Member
Join Date: Nov 2005
Location: Portland, OR
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Re: layout sizing help

Quote:
Originally Posted by mreine
Looks like your images are the problem! Try using divs and putting the images as backgrounds. The divs will allow more adjustment to browser width changes.
I agree that the problem with the layout is my images... they are wrecking it! If I change the layout to a fixed width and then adjust the image widths I can fix the crazyness from happening, but this is not an end-all solution...

Not quite sure how to incorporate the images into CSS and do the div tags in HTML page... I'm guessing in the CSS doc I would use the background image: URL()? How do I position it? I tried this with my header and it put it in a wierd spot in the head div. Is there a good tutorial somewhere out there that can explain this idea more clearly? Help!
Reply With Quote
  #4 (permalink)  
Old Mar 7th, 2006, 22:17
herkalees's Avatar
Highly Reputable Member
Join Date: Jul 2005
Location: Massachusetts, USA
Age: 87
Posts: 576
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to herkalees Send a message via MSN to herkalees Send a message via Yahoo to herkalees
Re: layout sizing help

When posting lengthy code in your forum topics, please use the required [ CODE ] [/ CODE ] tags.
Reply With Quote
Reply

Tags
layout, sizing, help

Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
WEbsite Sizing neel Web Page Design 12 Apr 24th, 2007 19:40
Sizing issues galan98 Starting Out 6 Apr 24th, 2007 15:27
Sizing of a page enemeth Web Page Design 4 Feb 13th, 2007 11:44
Table sizing problem Jaken Veina Web Page Design 1 Jan 6th, 2006 22:06
Text Box Sizing JohnMitch Web Page Design 2 May 4th, 2005 05:18


All times are GMT. The time now is 19:07.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43