Click here to Skip to main content
15,899,474 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a Mac so I usually do a cross browser check using IE NetRenderer and my div is not appearing on the site...just the background.

Can anyone help me out?

link[^]
Posted
Updated 28-Jun-11 3:18am
v2

Looks fine in FireFox and nearly okay in IE6: however, without seeing what your css and layout is (show a fragment, not the whole thing) it's impossible to know what you are doing.
 
Share this answer
 
Comments
[no name] 28-Jun-11 9:28am    
I apologize, the css is...


@charset "UTF-8";
/* CSS Document */

body {
background-color: #33291f;
background-image:url('/images/pattern.gif');
background-repeat: repeat;

scrollbar-face-color : #33291f;
scrollbar-highlight-color : #33291f;
scrollbar-3dlight-color : #33291f;
scrollbar-shadow-color : #33291f;
scrollbar-darkshadow-color : #33291f;
scrollbar-track-color : #33291f;
scrollbar-arrow-color : FFFFFF;

font-family: arial;
font-size: 9pt;
color: #000000;
text-decoration:none;
line-height: 18px;
}

td {
font-family: arial;
font-size: 9pt;
color: #000000;
text-decoration: none;
line-height: 20px;}

h1 {
font-family: arial;
font-size: 12pt;
color: #f58220;
text-decoration: bold;}

h2 {
font-family: arial;
font-size: 9pt;
color: #a3238e;
text-decoration: bold;}

a:link {
font-family: arial;
font-size: 9pt;
font-weight: bold;
color: #a4770d;
text-decoration: none;
background: none; }

a:active {
font-family: arial;
font-size: 9pt;
color: #a4770d;
text-decoration: none;
background: #FFFFFF; }

a:visited {
font-family: arial;
font-size: 9pt;
font-weight: bold;
color: #a4770d;
text-decoration: none;
background: none; }

a:hover {
font-family: arial;
font-size: 9pt;
color: #ffffff;
font-weight: bold;
background: #7a004b;
text-decoration: underline; }

a.small:link {
font-family: arial;
font-size: 8pt;
font-style: normal;
text-decoration: underline
color: #000000;
}

a.small:visited {
font-family: arial;
font-size: 8pt;
font-style: normal;
text-decoration: underline
color: #000000;
}

a.small:hover {
font-family: arial;
font-size: 8pt;
font-style: normal;
text-decoration: underline
color: #000000;
}

a.small:active {
font-family: arial;
font-size: 8pt;
font-style: normal;
text-decoration: underline
color: #000000;
}

#wrapper {
width: 960px;
margin-left: auto;
margin-right: auto;
background: #ffffff;
position: relative; }

#content {
position: absolute;
margin-left:580px;
top: 385px;
width: 575px;
height: 300px;
background: #ffffff;
overflow:auto; }

#footer {
position: absolute;
margin-left:330px;
margin-right:auto;
top: 2750px;
height: 50px;
font-size: 8pt;
}
R. Giskard Reventlov 28-Jun-11 9:39am    
Start by removing the position: absolute from the div and footer: that rendered a little better for me in IE6 though still needs work.
[no name] 28-Jun-11 9:31am    
A snapshot of the layout is here >> http://www.elncgr.org/snip.jpg
[no name] 28-Jun-11 9:48am    
I tried that earlier and whenever I remove that then the div floats whenever the screen is resized. I'm not too worried about 1E6, the IErenderer site was saying that it didn't work in versions 7,8 OR 9...as long as it shows up fine in those versions then I'll be ok. I just don't know if that site is reflecting the screenshot accurately...
Are you sure? I also tested with IE8. Looks fine, except one thing: central section is not centered on the background but shifted to left. In Seamonkey 2.0.14 it is centered, which I suppose is correct. Sometime using the tag "center" instead of style helps.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900