I am trying to add custom CSS. Place image in the center and wrap with a gradient. Here is my code. I believe the background gradient needs to be placed into a different class or ID. I tried to find it without sucess using Firefox web developer tools. The center image does show however the gradient does not. Please advise
#main_body
{
background: #73ADD7 url("/images/gradient.gif") repeat-x;
background-color: transparent;
background-image: url("/images/sky.jpg");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center top;
font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
font-size:small;
margin:8px 0 16px;
text-align:center;
}