My site www.eteknix.com
If you shrink your browser window or change your resolution, you will see that it will completely mess the site up with images overlapping etc...
How can i get it to be fluid and adjust to the resolution?
Here's my CSS code for the layout:
Hope someone can help.
Looks brilliant on my 1920x1080 res, but heard that lower is bad.
Thanks.
Andy
If you shrink your browser window or change your resolution, you will see that it will completely mess the site up with images overlapping etc...
How can i get it to be fluid and adjust to the resolution?
Here's my CSS code for the layout:
Code:
/*
LAYOUT: Three-Column Wide
DESCRIPTION: Three-column 950px fixed layout with two sidebars on either side of content
*/
body {
min-width:960px;
}
#main {
/*width:1260px;*/
margin:0 auto;
overflow:hidden;
position:relative;
}
#container {
width:100%;
float:left;
margin:0;
}
#content {
margin: 0 220px 0 235px;
overflow:hidden;
}
#primary {
width:220px;
float:left;
position:relative;
margin: 0 0 0 -100%;
padding-left:5px;
}
* html #primary {
left: 20px;
position: relative;
}
#secondary {
width:220px;
float:left;
margin: 0 0 0 -220px;
}
#footer {
clear:both;
}
#subsidiary {
/* width:1260px;*/
margin:0 auto;
overflow:hidden;
}
#subsidiary .aside {
width:300px;
float:left;
margin:0 10px 0 10px;
}
#subsidiary #third {
margin:0 0 0 10px;
}
#siteinfo {
clear:both;
/*width:1240px;*/
margin:0 auto;
}
.fixed {
/*width:1260px; */
margin:0 auto;
}
Hope someone can help.
Looks brilliant on my 1920x1080 res, but heard that lower is bad.
Thanks.
Andy