Hello PHPBB3BBCoders,
Almost all prosilver based-styles have this feature I really want on my board. If your mouse moves over a forum or a topic... The color changes. I really want to know how to do this :$
Thanks,
Arne
Change Color on Mouse-Over
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Change Color on Mouse-Over
Hmz .. I think this is what you want ..
styles/prosylver/themes/colours.css
Find:
a:link { color: #202020; }
a:visited { color: #202020; }
a:hover { color: #D31141; }
a:active { color: #368AD2; }
You can just change that 'hover' colour ...
styles/prosylver/themes/colours.css
Find:
Code: Select all
--------------------------------------------------------------
Colours and backgrounds for links.css
-------------------------------------------------------------- */
a:visited { color: #202020; }
a:hover { color: #D31141; }
a:active { color: #368AD2; }
You can just change that 'hover' colour ...
Change Color on Mouse-Over
Well, I can't see any 'hover' colors, although my colours.css file says it should be another color