The problem is in your CSS:
Code:
.menu a:link, .menu a:visited, a:active {
font-size: 10px;
padding: 4px 10px 3px 25px;
float: left;
background: url('images/tab.gif') no-repeat;
text-decoration: none;
}
See that you don't have ".menu" in front of "a:active"? This way it also applies to the links of your fontchange div after being clicked.
I assume IE is setting it active after being clicked, while mozilla doesn't.
Just change the CSS to:
Code:
.menu a:link, .menu a:visited, .menu a:active {
font-size: 10px;
padding: 4px 10px 3px 25px;
float: left;
background: url('images/tab.gif') no-repeat;
text-decoration: none;
}
Bookmarks