kalivos Posted July 19, 2006 Share Posted July 19, 2006 Hi, I'm new to CSS so forgive me if this is a REALLY stupid question.I'm trying to make a drop down menu (Which is working so far). I'm trying to add an image to the right of some of the links. I found that the image is pushed to the next line. This is for both IE and FF. 1) What's causing the image to be pushed down. 2) What action should I take to fix it?[code]--CSS--#nav a { display: block; width: 10em;}#nav img { float:right;}--HTML--<ul id="nav"><li><a href="#">test</a><img src="images/arrow-right.gif">[/code]Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/15071-block-problems/ Share on other sites More sharing options...
nogray Posted July 19, 2006 Share Posted July 19, 2006 Your image should be first in the code[code]<li><img src="images/arrow-right.gif"><a href="#">test</a></li>[/code] Link to comment https://forums.phpfreaks.com/topic/15071-block-problems/#findComment-60615 Share on other sites More sharing options...
kalivos Posted July 19, 2006 Author Share Posted July 19, 2006 That worked. It's funny how you don't catch things like that after staring at the monitor for several hours. :)Thank again Link to comment https://forums.phpfreaks.com/topic/15071-block-problems/#findComment-60675 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.