
Originally Posted by
JMRKER
...
Which browser is giving you the problem?
...
i bet he's talking about IE ))
for IE and the same crap (if exists lol) the code will be:
Code:
<html>
<head>
<title> Untitled </title>
<style type="text/css">
#leftPanel { width:150px; }
#leftPanel ul { list-style-type:none; }
#leftPanel li.norm{border:none;}
#leftPanel li.hov{border:1px solid Orange;}
</style>
</head>
<body>
<div id="leftPanel">
<ul id="leftPanelList">
<li onmouseover="this.innerHTML='Web Developer';this.className='hov'" onmouseout="this.innerHTML='WD';this.className='norm'"
onclick="window.location.href='http://www.webdeveloper.com'">WD</li>
<li onmouseover="this.innerHTML='Coding Forums';this.className='hov'" onmouseout="this.innerHTML='CF';this.className='norm'"
onclick="window.location.href='http://www.codingforums.com'">CF</li>
<li onmouseover="this.innerHTML='Dream In Code';this.className='hov'" onmouseout="this.innerHTML='DC';this.className='norm'"
onclick="window.location.href='http://www.dreamincode.net'">DC</li>
</ul>
</div>
</body>
</html>
use [code]YOUR CODE GOES HERE[/code] or burn in Hell
Bookmarks