Forum Moderators: not2easy
If I place the background-image in a parent container, is this going to expand the background to the left and right of the header? I do not want this to happen.
padding: 20px 0;
margin: 0 20px;
#content_container
{
background-image: url(http://www.test.com/growthconf2012/include/images/gradient.jpg);
background-repeat:repeat-x;
background-position: top left;
padding: 10;
margin: 0;
width: 807px;
color: #484848;
font-family: arial;
font-size: 12px;
}
#content_container_table, td
{
padding: 10;
margin: 0;
width: 700px;
color: #484848;
font-family: arial;
font-size: 16px;
}
padding: 10;on #content_container to...
padding: 30px 10px 10px 10px;
margin: 0;to...
margin: 30px 0 0 0;
#content_container
{
background-image: url(http://www.maximgrp.com/growthconf2012/include/images/gradient.jpg);
background-repeat:repeat-x;
background-position: top left;
padding: 30px 10px 10px 10px;
margin: 0px;
width: 807px;
color: #484848;
font-family: arial;
font-size: 12px;
}
#content_container_table, td
{
padding: 10;
margin: 0;
width: 700px;
color: #484848;
font-family: arial;
font-size: 16px;
}