inherit
194436
0
Aug 7, 2013 16:11:28 GMT -8
Enchantress
61
May 2013
xeclipsex
|
Post by Enchantress on Jul 19, 2015 15:04:59 GMT -8
I posted in SPRING DUST's official theme support thread, but the owner has not been on recently. I just want to know where I can edit the color for the bold text in posts.
In other words, when the text is in bold, it is in a different color. How and where can I edit it out to the normal bold text?
Thank you for your help!
|
|
inherit
194436
0
Aug 7, 2013 16:11:28 GMT -8
Enchantress
61
May 2013
xeclipsex
|
Post by Enchantress on Jul 24, 2015 13:15:39 GMT -8
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Jul 28, 2015 11:35:46 GMT -8
I posted in SPRING DUST's official theme support thread, but the owner has not been on recently. I just want to know where I can edit the color for the bold text in posts.
In other words, when the text is in bold, it is in a different color. How and where can I edit it out to the normal bold text?
Thank you for your help!
Since you didn't provide a link to your site I'm guessing they added that to the style sheet somewhere.
Try looking for some css that looks like this and remove it or remove the color in it. If you can't find it then just add that changing the #ff0000 to whatever hex color you want. (add it to the bottom of your style sheet so it will over-ride anything before it.)
.message strong, b {color: #ff0000;}
|
|
inherit
194436
0
Aug 7, 2013 16:11:28 GMT -8
Enchantress
61
May 2013
xeclipsex
|
Post by Enchantress on Jul 28, 2015 18:49:39 GMT -8
I'm so sorry! Here's my site.
I did as you said and put the code at the bottom of my Style Sheet, but nothing changed. What am I doing wrong?
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Jul 28, 2015 22:35:00 GMT -8
I'm so sorry! Here's my site.
I did as you said and put the code at the bottom of my Style Sheet, but nothing changed. What am I doing wrong?
Thanks for the link but rather me digging through threads trying to find a place where a word is bolded can you link me to a post and tell me what word is in bold that is wrong so I can take a closer look. Thanks.
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,848
January 2015
msg
|
Post by Lynx on Jul 29, 2015 0:43:12 GMT -8
|
|
inherit
194436
0
Aug 7, 2013 16:11:28 GMT -8
Enchantress
61
May 2013
xeclipsex
|
Post by Enchantress on Jul 29, 2015 19:51:26 GMT -8
Lynx ~ Thanks.
Tumbleweed ~ Is this resolvable, or is this too hard coded into the template?
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Jul 29, 2015 23:38:28 GMT -8
Lynx ~ Thanks.
Tumbleweed ~ Is this resolvable, or is this too hard coded into the template?
Thanks to MSG too.
O.K. Took a look and it seems the bold is being changed by this:
.message b{ color: #b59292; }
So look for that at the bottom of your css style sheet and remove it or if you can't find it just add it to the very bottom and change the color. You may want to add !important to the end.
.message b{ color: #b59292!important; }
|
|
inherit
194436
0
Aug 7, 2013 16:11:28 GMT -8
Enchantress
61
May 2013
xeclipsex
|
Post by Enchantress on Jul 30, 2015 9:41:35 GMT -8
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Jul 30, 2015 11:19:30 GMT -8
|
|