about links and box rectangle

windows

Guest
hello guys,<br />
i'm a newbie at developing web site<br />
so i don't know this question is belong to which forum<br />
i ask in javascript and html forum<br />
<br />
i want to make a bunch of links and when the mouse over a link, the <br />
link background color will change, and when mouse out, the link back to normal<br />
then can a link make a box next to it that contains several new links<br />
<br />
thanxx guys<!--content-->i cant answer your rectangle problem, howeva i can help ya out on changin the link color and bgcolor using a quite easy css code....<br />
<br />
in your <HEAD> section type:<br />
<style type="text/css"><br />
a<br />
{<br />
background: #your rgb for your normal links<br />
}<br />
a:hover<br />
{<br />
background: #your rgb for your links on mouseover<br />
}<br />
</style><br />
<br />
i hope that works for ya....<br />
<br />
and if you want the rollover only to work on specific links, heres an example on how to do just that:<br />
<br />
in your <HEAD> section type:<br />
<style type="text/css"><br />
a.classname<br />
{<br />
background: #your rgb for your normal links<br />
}<br />
a.classname:hover<br />
{<br />
background: #your rgb for your links on mouseover<br />
}<br />
</style><br />
<br />
and then in your <BODY> section, within your <A> tag:<br />
<br />
<a class="classname" href=http://www.webdeveloper.com/forum/archive/index.php/"your url"><br />
<br />
hope it helps ya a bit<br />
umak ikimas yoni!<br />
<br />
\\\\XaTaKu_NaKuSuTe////<br />
<br />
XaTaKu.TK (<!-- m --><a class="postlink" href="http://www.xataku.tk/">http://www.xataku.tk/</a><!-- m -->)<!--content-->
 
Back
Top