inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Apr 1, 2013 3:42:47 GMT -8
i want to change all links in the profile with css, what would that be
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Apr 1, 2013 9:45:52 GMT -8
Hi, tunescool. This will affect it all universally.
|
|
inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Apr 1, 2013 10:56:52 GMT -8
nothing changed
.mini-profile a { font-size: 14px; font-style: italic; font-weight: bold; font-color: 00138E; }
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Apr 1, 2013 11:06:44 GMT -8
The font color's hex code needs a # symbol before it.
Everything else needs !important added to it as it's all being overridden by other selectors using the font declaration.
|
|
inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Apr 1, 2013 11:15:38 GMT -8
i copied what you posted and still nothings changed
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Apr 1, 2013 11:24:49 GMT -8
Working on my end, as well as displaying in Firebug that the CSS you copied is taking priority and working. Care to elaborate?
|
|
Aaron
New Member
Posts: 146
inherit
190454
0
Jul 18, 2024 15:15:21 GMT -8
Aaron
146
February 2013
aarongoff
|
Post by Aaron on Apr 1, 2013 11:28:02 GMT -8
.mini-profile a { font-size: 14px !important; font-style: italic !important; font-weight: bold !important; color: #00138E !important; }There is no "font-color" attribute. It is simply "color". Condensed version: .mini-profile a { font: bold italic 14px !important; color: #00138E !important; }(I used green as a test)
|
|
inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Apr 1, 2013 11:40:24 GMT -8
i put miniprofile in the title but what i wanted to do was the member profile, i mistyped sorry brian
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Apr 1, 2013 11:45:38 GMT -8
Good catch, Aaron. I skimmed over it and completely neglected to correct the color declaration. My bad. This one should affect the user profile.
|
|
inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Apr 1, 2013 12:02:58 GMT -8
sorry for another screw up, thanks brian
|
|
inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Apr 3, 2013 5:49:29 GMT -8
that changed the color of the tab text and the buttons too, how can i get the tabs and buttons they way they were and just have the links changed with the css
|
|
Aaron
New Member
Posts: 146
inherit
190454
0
Jul 18, 2024 15:15:21 GMT -8
Aaron
146
February 2013
aarongoff
|
Post by Aaron on Apr 3, 2013 8:30:08 GMT -8
div.pad-all-double div.content-box a { font: bold italic 14px !important; color: #00138E !important; }
|
|
inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Apr 3, 2013 8:43:38 GMT -8
thanks aaron
|
|