I'm trying to find the background color for this page:
/Checkout/Default.aspx
I looked in the style sheet for it but can't find it. I'm using the Glass_Aqua
theme (just for this page) and checked that style.
Does anyone know which style changes this? thanks
Can't find background color for Checkout page.
Re: Can't find background color for Checkout page.
In fact the background color is due to #mainPanel but if you remove the background color from it then background color of #innerContentWrapper will get applied. So if you want to remove the page background color then you are in need to remove color info form #innerContentWrapper and #mainPanel CSS ids. Find the #mainPanel and #innerContentWrapper in the CSS and remove background color from their styles.
Re: Can't find background color for Checkout page.
thanks Mazhar, the mainPanel Bkgrnd color was it.
I had to remove these 2 images (round left corners) that had that same color:
took out:
background:#FFFFFF url(images/CategoryBreadCrumbsEdge.gif) no-repeat left top;
from
.LoginMessage {padding: 5px 0; text-indent: 10px; width: 800px; margin:0pt auto; color:red; }
and took out:
background:#FFFFFF url(images/thumbnailTdBg.gif) no-repeat left top;
from
.opcMainPanel{width:600px; padding-right:10px; padding-left:10px; vertical-align:baseline; }
I had to remove these 2 images (round left corners) that had that same color:
took out:
background:#FFFFFF url(images/CategoryBreadCrumbsEdge.gif) no-repeat left top;
from
.LoginMessage {padding: 5px 0; text-indent: 10px; width: 800px; margin:0pt auto; color:red; }
and took out:
background:#FFFFFF url(images/thumbnailTdBg.gif) no-repeat left top;
from
.opcMainPanel{width:600px; padding-right:10px; padding-left:10px; vertical-align:baseline; }