Page 1 of 1

Cart/Registration Background question

PostPosted: Fri Feb 07, 2014 9:21 am
by dresdena1
I have assigned two background images to the webpage:
www.affordablesolaray.com/test.html

The left background is assigned to HTML and the right is assigned to BODY. They are working fine until going into either Registration or the Cart.
There appears to be some type of container/table covering the left side.

If possible please let me know how to correct this so the left background appears also.
Thank you.

Re: Cart/Registration Background question

PostPosted: Fri Feb 07, 2014 10:06 am
by Jim
There is a <div> for the content of the shopping cart. it has this style
Code: Select all
#container {
    background-color: #FFFFFF;
    border-color: #D09B1B;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 5px 5px 5px #014718;
    margin: 0 auto 10px;
    width: 960px;
}


The "Margin:0 auto 10px" is the part that centers the div on the screen. You could probably add another <div> and set it to be on the left side and then put your background in that div.

Re: Cart/Registration Background question

PostPosted: Fri Feb 07, 2014 11:13 am
by dresdena1
Jim,
Excellent! Thank you!