CSS Background color wont fill field in IE
Posted: 02 February 2007 03:03 AM   [ Ignore ]
Newbie
Rank
Total Posts:  2
Joined  2006-01-06

I think I almost have this taken care of in Firefox but viewing it in IE theres still aways to go… What I’d like to get help with is CSS adjustments for my Skins/rsi/StyleSheets/popup.css ,, If you click Here then click “More Images” (right under the product image) in Firefox its how I want it,, but in IE the background color dosent expand in the field

Where in my CSS am I off? or what do I need to add to the CSS to help IE out?

What I’m trying to accomplish is for customers to be able to view a Full Sized Image that I’d rather FTP to the Images folder instead of useing the carts upload feature, (which seems to resize my images), If anyone views the other products, those images were uploaded via the carts upload feature, (hence “resized”)
#pageSurround is were the color is for the background

body {
    margin
5px;
    
background-color#A5A5A5;
    
background-attachmentscroll;
    
background-imageurl(../styleImages/backgrounds/pageBg.jpg);
    
background-repeatrepeat-x;
    
background-positiontop;
}
#pageSurround {
    
background-color#F2dec6;
    
border2px solid #000000;
    
margin-bottom5px;
}
#divThumbsImg {
    
overflow:auto
    
height700px
    
width120px
    
text-aligncenter
    
floatleft
    
margin-right5px;
    
border-right2px solid #a44904;
}
.thumbsImg {
    border
1px solid #000000;
    
background-color#000000;
}
#divMainImg {
    
floatleft
    
width600px
    
height600px;
    
text-aligncenter;
    
overflowhidden;
    
margin-bottom5px;
}
a
.popupLink {
    font
-familyArialHelveticasans-serif;
    
font-size75%;    
    
text-decorationnone;
    
color#000000;
    
font-weightbold;
}
a
.popupLink:hover {
    color
#070F72;
    
font-weightbold;
}
.txtCopyrighta.txtCopyright {
    text
-alignleft;
    
font-familyVerdanaArialHelveticasans-serif;
    
font-size1px;
    
padding-top5px;
    
color#999999;
}
a
.txtCopyright:hover {
    text
-decorationnone;


Any help is always apperciated :)

Profile
 
 
Posted: 03 February 2007 02:07 AM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  2
Joined  2006-01-06
#pageSurround {
    
background-color#F2dec6;
    
border2px solid red;
    
margin-bottom5px;
    
width100%;
    
overflowauto;

Simple Fix I guess…... Seems to view in all my browsers now

Profile