php CSS problem

i have an ad-box that works fine when opening via browser with no server.

but when i go to my localhost and run the page through server it’s disappeared.

here:
#adv-box {
background: url(…/images/adv-box-bg.jpg) repeat-x left top;
height: 380px;
padding: 60px 0;
}
#adv-box > div {
width: 800px;
margin: 0 auto;
padding: 0 80px;
}
#adv-box > div img {
float: right;
margin-left: 60px;
}
#adv-box h1, #adv-box h2 {
color: #2c2c2c;
font-size: 60px;
line-height: 60px;
margin: 0;
text-transform: uppercase;
}
#adv-box h2 {
font-size: 30px;
line-height: 36px;
text-transform: none;
}
#adv-box p {
font-size: 16px;
line-height: 24px;
margin: 0;
}
#adv-box p span {
display: block;
font-size: 12px;
width: 360px;
padding: 24px 0;
text-align: center;
}
#adv-box p span b {
font-weight: normal;
display: block;
width: 256px;
}

CAN ANYONE HELP ME FIX THIS?

Thanks.

The only thing I can think of is

[php]#adv-box {
background: url(…/images/adv-box-bg.jpg) repeat-x left top;
height: 380px;
padding: 60px 0;
}[/php]

That the image location above doesn’t exist or you didn’t add that graphic to your server.

Sponsor our Newsletter | Privacy Policy | Terms of Service