Hi CzechBoy,
your link css-buttons indeed look great now in Firefox! When I look in IE though the link buttons are as messy as the input buttons (well at least IE seems more consistant in this case ;-) ).
But I am afraid I can't help you with that right now
I do see however that you added the css code which should make the inline css obsolete, but the inline width setting is stil there.
To remove this inline style you can look for (in includes/html_output.php):
Code:
$style = ' style="width: ' . $width . 'px;"';
And change it to:
Code:
$style = ' style="width: ' . $width . 'px;"';
$style = ''; // remove inline style
(this way it is easy to revert if needed)
Bookmarks