Hi,
Well i am totally new to css and html,
i am making a table with css, need to show hover on image and text, hover is showing correctly on text, but on image its not working, below is my html and css.
<style type="text/css"><!--
#list4 { font-family:"Comic Sans MS", cursive font-size:11px; } #list4 ul { list-style-image: url(http://cdn1.iconfinder.com/data/icons/oxygen/16x16/actions/media-playback-start.png); } #list4 ul li { } #list4 ul li a { display:block; text-decoration:none; color:#000000; background-color:#FFFFFF; line-height:20px; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#CCCCCC; padding-left:10px; cursor:pointer; } #list4 ul li a:hover { color:#FFFFFF; background-color:#FF9933; } #list4 ul li a strong { margin-right:10px; }
--></style>
<table style="table-layout: fixed; width: 100%;" >
<tbody>
<tr>
<th colspan="2"><img class="aligncenter" alt="" src="http://t3.gstatic.com/images?q=tbn:ANd9GcSRQPDC-vE-opE5k0q_lTYRtLVOQdkaN5hmk3v3IyIxJs7Azj9G" width="77" height="77" /></th>
</tr>
<tr>
<td>
<div id="list4">
<ul>
<li><a href="#"><strong>Some Text</strong></a></li>
<li><a href="#"><strong> Some Text </strong></a></li>
<li><a href="#"><strong> Some Text </strong></a></li>
<li><a href="#"><strong> Some Text </strong></a></li>
<li><a href="#"><strong>Some Text</strong></a></li>
</ul>
</div></td>
<td>
<div id="list4">
</div></td>
</tr>
</tbody>
</table>