I've seen this problem before, however never bothered to solve it.
I have a page with two div's each with a unordered list, as follows:
<div id = 'list_menu'>
<ul>
<li><a href ="menu1.php">
<span class = "thumbnail"><img src = "images/png/list_menu.png"></span>
<span class = "title">Menu Title 1</span></a></li>
<li><a href ="menu2.php">
<span class = "thumbnail"><img src = "images/png/list_menu.png"></span>
<span class = "title">Menu Title 2</span></a></li>
<li><a href ="menu3.php">
<span class = "thumbnail"><img src = "images/png/list_menu.png"></span>
<span class = "title">Menu Title 3</span></a></li>
<li><a href ="menu4.php">
<span class = "thumbnail"><img src = "images/png/list_menu.png"></span>
<span class = "title">Menu Title 4</span></a></li>
</ul>
</div>
<div id='list'>
<ul>
<li><a href "test1.php" target = "_blank">
<span class = "thumbnail"><img src = "images/png/list.png"></span>
<span class = "title">Title 1</span>
<span class = "description">Description 1</span></a></li>
<li><a href "test2.php" target = "_blank">
<span class = "thumbnail"><img src = "images/png/list.png"></span>
<span class = "title">Title 2</span>
<span class = "description">Description 2</span></a></li>
<li><a href "test3.php" target = "_blank">
<span class = "thumbnail"><img src = "images/png/list.png"></span>
<span class = "title">Title 3</span>
<span class = "description">Description 3</span></a></li>
</ul>
</div>
The problem I am having is when I mouse-over an item in the 'list' div it shows the 'list_menu' div item URL. Not only that the 'list_menu' item 2 URL is the only url echoed in all the 'list' items. Therefore, I never see any test*.php URL's
All very odd, not sure if the CSS is the issue. Any help would be greatly appreciated
Thanks in advance
I have a page with two div's each with a unordered list, as follows:
<div id = 'list_menu'>
<ul>
<li><a href ="menu1.php">
<span class = "thumbnail"><img src = "images/png/list_menu.png"></span>
<span class = "title">Menu Title 1</span></a></li>
<li><a href ="menu2.php">
<span class = "thumbnail"><img src = "images/png/list_menu.png"></span>
<span class = "title">Menu Title 2</span></a></li>
<li><a href ="menu3.php">
<span class = "thumbnail"><img src = "images/png/list_menu.png"></span>
<span class = "title">Menu Title 3</span></a></li>
<li><a href ="menu4.php">
<span class = "thumbnail"><img src = "images/png/list_menu.png"></span>
<span class = "title">Menu Title 4</span></a></li>
</ul>
</div>
<div id='list'>
<ul>
<li><a href "test1.php" target = "_blank">
<span class = "thumbnail"><img src = "images/png/list.png"></span>
<span class = "title">Title 1</span>
<span class = "description">Description 1</span></a></li>
<li><a href "test2.php" target = "_blank">
<span class = "thumbnail"><img src = "images/png/list.png"></span>
<span class = "title">Title 2</span>
<span class = "description">Description 2</span></a></li>
<li><a href "test3.php" target = "_blank">
<span class = "thumbnail"><img src = "images/png/list.png"></span>
<span class = "title">Title 3</span>
<span class = "description">Description 3</span></a></li>
</ul>
</div>
The problem I am having is when I mouse-over an item in the 'list' div it shows the 'list_menu' div item URL. Not only that the 'list_menu' item 2 URL is the only url echoed in all the 'list' items. Therefore, I never see any test*.php URL's
All very odd, not sure if the CSS is the issue. Any help would be greatly appreciated
Thanks in advance