inherit
185216
0
Jun 27, 2024 19:51:25 GMT -8
Ratqueen
32
November 2012
ratqueen
|
Post by Ratqueen on Mar 30, 2022 13:08:04 GMT -8
Hello! I changed the text color for buttons to white, but that unfortunately is tied to the text color for the Font Face and Font Size boxes in the Create Thread/Post windows, essentially making it invisible. Is there a way to change the text color (or background color) for the font boxes without affecting the general buttons text color? This is the forum: petzforum.proboards.com (I temporarily changed the buttons and text colors though, so my members can see the text.) - Colors & Theme Creator > Customize Theme Colors > Buttons > Text/Borders: ffffff - Advanced Styles & CSS > Objects > Buttons > Text > Text Color: ffffff
Thank you so much! I appreciate your time!
EDIT: I edited my post because I found the answer for my other question.
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,018
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Apr 1, 2022 21:19:47 GMT -8
If you wish to set a different color for the dropdowns you can use a rule added to the bottom of your theme's stylesheet such as the following: .ui-wysiwyg .selectMenuButton.button { color: #000; } Note: This rule employs 3 classes in the selector to override the potential contenders that use only 1 or 2 classes but this unfortunately also includes the hover effect rule that uses the selector .button:hover (1 class + 1 pseudo-class) meaning you lose that hover effect unless you recreate it by adding a stronger rule for hover that can then override this newer rule example: .ui-wysiwyg .selectMenuButton.button:hover (3 classes + 1 pseudo-class)]
|
|
inherit
185216
0
Jun 27, 2024 19:51:25 GMT -8
Ratqueen
32
November 2012
ratqueen
|
Post by Ratqueen on Apr 2, 2022 5:23:16 GMT -8
Thank you very much for the detailed reply and examples, Chris!
|
|