http://www.mam.frih.net/
the site is not ready at all. Logo will change, colors, etc. But, If you notice at the buttons, there's a black line surroinding each of them... and I don't like that. Anyone knows how to take them out?
Well, it doesn't in Firefox so I assume that IE is automatically sticking in a border for the <img> object.
Since you don't use CSS just put border="0" in every button image tag.

well... I'm using FF. A friend on MSN who I showed the first "base" of the site told me that the "boxes around the buttons look awful!", so I thought that maybe I just couldn't see it for X reason.
thanks
well, I just checked on IE how the site looks. Everything is fine now, EXCEPT for the fieldset and legend tags which seem not to work well, or just don't work.
anyone knows what am I doing wrong?
for that matter, it is recommended that you used images instead of tags. they dont come as your wish in every browser.
did it with images. Perfect, thanks.
how do I make the buttons to have the mouseover-mouseout-onclick events happen correctly? the onmouseover and onmouseout work already, but I haven't been able to fix it for the onclick
Its exactly the same as the onmouseoever and onmouseout...
however i suggest changing the way you use onmouseover:
instead of:
| Code: |
<td><a href="" target="3" target="_self" onMouseover="document.images.caca2.src='english2.gif'"
onMouseout="document.images.caca2.src='english1.gif'"><center><img src="english1.gif" name=caca2 alt=English Lang. border=0></a></td> |
do this:
| Code: |
<td>><center><img src="english1.gif" alt=English Lang. border=0 onMouseover="this.src='english2.gif'"
onMouseout="this.src='english1.gif'"></td> |
As you can see, its quite a bit shorter and also a lot easier to understand!
To implement a onclick event, just write the following:
| Code: |
| onclick="STUFF YOU WANNA DO" |
It really is that easy...