I know this is possible as I have seen it before, but apparently my css skills are nowhere near where they need to be to accomplish this as I have tried all I can think of... Here is a link to my sample page... (<!-- m --><a class="postlink" href="http://www.richmediaproductions.com/list.php">http://www.richmediaproductions.com/list.php</a><!-- m -->) ... right now I have everything how I would like, except when you rollover a company name I would like it to highlight the company name AND the owner's name and not individualy as it is now.
Does anyone know the fix or work around for that?? I would GREATLY appreciate any input...Try this. Define the highlight or background colors in youDefaultClass and yourHighlighClass.
<tr class="yourDefaultClass" onmouseover="this.className='yourHighlightClass'" onmouseout="this.className='yourDefaultClass'"><td>some content</td></tr>
Also if it's a button add:
cursorointer; cursor:hand;
to the classes so the pointer looks right.
-jscott
Does anyone know the fix or work around for that?? I would GREATLY appreciate any input...Try this. Define the highlight or background colors in youDefaultClass and yourHighlighClass.
<tr class="yourDefaultClass" onmouseover="this.className='yourHighlightClass'" onmouseout="this.className='yourDefaultClass'"><td>some content</td></tr>
Also if it's a button add:
cursorointer; cursor:hand;
to the classes so the pointer looks right.
-jscott