views:

8

answers:

1

This wiki I'm using (Google Sites) does not support linking of style sheets or even tags in its HTML mode (It sucks, I know). The only way to specify styles is to define them inline.

I need to put a menu bar now. I've figured out a pure css menubar, but I'm having trouble defining the hover class inline. Any ideas?

A: 

Pseudo-class attributes are not well supported for inline styles, but you can use Javascript, such as

<a href="page.html" style="color: red;" onmouseover="this.style.color = 'blue'" onmouseout="this.style.color = 'red'">Link</a>
Nick Pyett
No, Google Sites does not support this either.
manu1001