2012-01-04, 07:53 PM
2012-01-04, 08:09 PM
Usually you would just have to change something similar to this in your global.css:
But if you want a more detailed response you'll need to provide us your forum URL.
a:link {
color: #369;
text-decoration: none;
}
a:visited {
color: #036;
text-decoration: none;
}
a:hover, a:active {
color: #036;
text-decoration: underline;
}
But if you want a more detailed response you'll need to provide us your forum URL.
2012-01-06, 10:27 PM
This didn't work, anyone got any other ideas? :L
2012-01-06, 10:28 PM
It's very hard to give you a specific answer when we don't have a link to your forum. Your theme could be pretty different from the default, and without the source we won't be able to guide you.
2012-01-06, 10:43 PM
2012-01-06, 10:56 PM
in your global.css find
and replace with
This will change link colors to white (on hover it will remain the same - if you want to change link color on hover then edit color value under .menu ul a:hover, .menu ul a:active from #575757 to #ffffff or any other that you want).
Quote:.menu ul a, .menu ul a:link {
color: #4d4d4d;
padding: 5px 10px;
text-decoration: none;
}
.menu ul a:visited {
color: #4d4d4d;
text-decoration: none;
}
.menu ul a:hover, .menu ul a:active {
background: url(../../../images/UniqueKnight/thead_bg.gif) repeat-x;
color: #575757;
padding: 5px 10px;
border: 1px solid #242424;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-decoration: none;
font-weight: bold;
}
and replace with
Quote:.menu ul a, .menu ul a:link {
color: #ffffff;
padding: 5px 10px;
text-decoration: none;
}
.menu ul a:visited {
color: #ffffff;
text-decoration: none;
}
.menu ul a:hover, .menu ul a:active {
background: url(../../../images/UniqueKnight/thead_bg.gif) repeat-x;
color: #575757;
padding: 5px 10px;
border: 1px solid #242424;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-decoration: none;
font-weight: bold;
}
This will change link colors to white (on hover it will remain the same - if you want to change link color on hover then edit color value under .menu ul a:hover, .menu ul a:active from #575757 to #ffffff or any other that you want).
2012-01-06, 11:07 PM
Thanks Johnny S! Really helped me out!