Before I put this code in:
<div id="bannerInRight"> <img src="images/race.jpg" width="475" height="258"/></div>
I had a "nivo slider" in its place. I tried to delete all the nivo code I could find, but now the image isn't appearing at all.
Below is my CSS:
#bannerInRight {
float: right;
height: 261px;
margin: 8px 28px 20px;
width: 475px;
}
And here is the live link if that helps at all: http://www.lymemd.org/indexmm6.php
Thank you in advance.
Your stylenew.css
file includes:
#bannerInRight img {
position: absolute;
top: 0px;
left: 0px;
display: none;
}
which causes the image to remain hidden.
Remove this rule and the image shows up.