html - Why is my image not showing up? -


before put code in:

<div id="bannerinright"> <img src="images/race.jpg" width="475" height="258"/></div> 

i had "nivo slider" in place. tried delete nivo code find, image isn't appearing @ all.

below css:

#bannerinright { float: right; height: 261px; margin: 8px 28px 20px; width: 475px; } 

and here live link if helps @ all: http://www.lymemd.org/indexmm6.php

thank in advance.

your stylenew.css file includes:

#bannerinright img {     position: absolute;     top: 0px;     left: 0px;     display: none; } 

which causes image remain hidden.

remove rule , image shows up.


Comments

Popular posts from this blog

What can cause "Required Package 'IndyCore' not found" when compiling a Delphi 2010 project? -

Change the color of an oval at click in Java AWT -