|
Posted by BootNic on 09/08/06 13:49
> 1995 Cobra <mg@deepskystudio.com> wrote:
> news: 1157718397.899630.282750@d34g2000cwd.googlegroups.com
> Hello all, brand new to CSS thanks to some help from some folks in
> this group so I'm likely making a rookie mistake. If you go to this
> link http://www.pamschams.com/pc_beta2.asp there are essentially 3
> columns to make up the design. I'm posting my style sheet below. The
> site views fine in Firefox and Safari, but I.E. puts the center
> column below the left and right column. Any ideas? :
[snip]
http://www.positioniseverything.net/explorer/threepxtest.html
Your #header is 6px too wide for IE. (3px X 2)
Possible work around for it:
<link href="pc_style_2.css" rel="stylesheet" type="text/css">
<!--[if lte IE 6]>
<link href="pc_style_2IE.css" rel="stylesheet" type="text/css">
<![endif]-->
</head>
===
pc_style_2IE.css content
#header{
width:794px;
}
#right{
position: relative;
top:0;
right:3px;
}
#left{
position: relative;
top:0;
left:3px;
}
--
BootNic Friday, September 08, 2006 9:49 AM
All men dream, but not equally. Those who dream by night in the dusty
recesses of their minds, wake in the day to find that it was vanity:
but the dreamers of the day are dangerous men, for they may act on
their dreams with open eyes, to make them possible.
*Thomas Edward Lawrence (of Arabia)*
[Back to original message]
|