Problems with Firefox and CSS

liunx

Guest
Working on this site <!-- m --><a class="postlink" href="http://www.sellerscircle.com/index.php">http://www.sellerscircle.com/index.php</a><!-- m --> and have the blue theme validating xhtml strict and valid css. Looks ok in IE 6 but in FF 1 it looks like crap.

The css for the part giving me trouble is

#cont {
position: relative;
right: 5px;
bottom: 10px;
top: 1px;
width:83%;
background:#ffffff;
color: #333333;
border:solid #000000;
border-width:1px 1px 1px 1px;
text-align:left;
padding:5px;
min-height: 500px;
height: auto;
}

Any suggestions?I'm afraid I don't have time to give a full answer, but this should get you started : #cont {
background:#ffffff;
color: #333333;
border:1px solid #000000;
text-align:left;
min-height: 500px;
margin-left:17%;
margin-right:3%;
}
* html #cont {
height:500px;
}Wow! Thanks, that did the trick.Cool. :)
 
Back
Top