Graphic Designer & WebDev
Posts: 297
Name: Styla
Location: City of London
|
Quote:
Originally Posted by HorizonsDave
To the point - will the tables allow me to keep my image as I laid it out, in other words will they shrink the content to fit individual screens?
Thanks again
|
Your layout is a liquid layout (based on percentages) so it will vary from screen to screen. If you're adamant on a fixed and consistent look then I would suggest that you go for a fixed width layout; standard size ranging from 950-990pixels which will mean that no matter the resolution (1024 and above) - it will look the same.
My personal preference is fixed layouts however websites such as this forum are better suited to its liquid form and I think your website looks good on my 1280 x 1024 resolution.
FYI, to make it a fixed width; change the value in your CSS file to 980px
Code:
#masthead{
position: absolute;
top: 0px;
left: 2%;
right: 2%;
width:95.6%;
Now to fix your first problem, you need to open up that page and you'll see that you have set the width of the table at " 1135" which is beyond a safety margin. change the value to 100% or less so it will be contained within your layout
HTML Code:
<table width="1135" height="400" border="1" cellpadding="10" cellspacing="0">
Also, on your safety page you have linked to a document on your local computer and not server
HTML Code:
<img alt="" src="file:///C|/Program%20Files%20(x86)/Macromedia/Dreamweaver%208/Configuration/BuiltIn/PageDesigns/images/tl_curve_white.gif" height="6" width="6" id="tl" /> <img alt="" src="file:///C|/Program%20Files%20(x86)/Macromedia/Dreamweaver%208/Configuration/BuiltIn/PageDesigns/images/tr_curve_white.gif" height="6" width="6" id="tr" />
Last edited by JSTYLISH; 10-22-2009 at 05:59 PM..
|