inherit
177972
0
May 15, 2016 0:17:29 GMT -8
Elaina
161
March 2012
kitakin
|
Post by Elaina on Jun 12, 2013 23:56:53 GMT -8
I'm trying to make each member group /besides the staff groups/ to not show the link color when you hover over it and what not. That way the member's name will always appear as the same color if you hover over it or click on it. I know that the code below was how we edited member groups before /at least to fine tune them/ but when I tried to see if it'd work in v5 no luck. Is there another way to accomplish this?
<style type="text/css"> <!-- .group4:link,.group4:visited,.group4:hover { color: #7597ab; } .group5:link,.group5:visited,.group5:hover { color: #67a149; } .group6:link,.group6:visited,.group6:hover { color: #c84444; } --> </style>
|
|
inherit
177972
0
May 15, 2016 0:17:29 GMT -8
Elaina
161
March 2012
kitakin
|
Post by Elaina on Jun 14, 2013 2:28:05 GMT -8
bump
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Jun 14, 2013 4:42:38 GMT -8
If it helps at all, this is what Smangii is using on his forum to modify groups: <style type="text/css"> .group-0, .group-0 a, .group-0:link { color: #3b8a7c; }
/* veteran */ .group-3:before { font-family: verdana !important; content: '^'; font-weight: bold; color: #e64f53; margin: 0 2px 0 0; } /* designer */ .group-4:before { font-family: verdana !important; content: '~'; font-weight: bold; color: #4a90bd; margin: 0 2px 0 0; } /* debugger */ .group-5:before { font-family: verdana !important; content: '='; font-weight: none; color: #eaa05d; margin: 0 2px 0 0; } /* motm */ .group-7:before{ font-family: verdana !important; content: '!'; font-weight: bold; color: #e26a8c; margin: 0 2px 0 0; } </style>
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Jun 14, 2013 14:52:47 GMT -8
Something like this should work: (put this in your CSS file, Admin Area > Themes > Advanced Styles & CSS > Style Sheet)
.user-link.group-4, .user-link.group-4:visited, .user-link.group-4:hover { color: #7597ab !important; } .user-link.group-5, .user-link.group-5:visited, .user-link.group-5:hover { color: #67a149 !important; } .user-link.group-6, .user-link.group-6:visited, .user-link.group-6:hover { color: #c84444 !important; }
|
|
inherit
177972
0
May 15, 2016 0:17:29 GMT -8
Elaina
161
March 2012
kitakin
|
Post by Elaina on Jun 14, 2013 23:01:30 GMT -8
A the new code worked. Thanks ^^
|
|