Lord Shyguy
I want the ULTIMATE sausage sandwich.
I've been redoing a style for my site, and one problem has come up; the banners won't display. Here is the CSS for the banners:
And here's the HTML for where the banners are supposed to be:
Is there supposed to be something in the divs? Is the CSS image code wrong? I can't seem to figure it out.
Code:
#banner {
text-align:center;
height:150px;
}
#banner img {
margin:auto;
height:226px;
width:765px;
background-image:url('C:\Documents and Settings\Pappa Bear\My Documents\My Pictures\Pokemon Sprites\Pokenigma Stuff\Pokenigma Banner.PNG')
}
#bannerbp {
text-align:center;
height:150px;
}
#bannerbp img {
margin:auto;
margin-right:45px;
height:76px;
width:424px;
background-image:url('C:\Documents and Settings\Pappa Bear\My Documents\My Pictures\Pokemon Sprites\Pokenigma Stuff\Pokenigma Banner 2.PNG')
}
And here's the HTML for where the banners are supposed to be:
Code:
<div id="banner">
</div>
<div id="bannerbp">
</div>
Is there supposed to be something in the divs? Is the CSS image code wrong? I can't seem to figure it out.