inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Apr 24, 2013 8:35:17 GMT -8
Was going to post this over in General v5 Discussion but for some odd reason, I don't see "Create Thread" to start a thread? Anyways... would like to change the look from this: to a larger size box and larger size text within it.
|
|
inherit
182185
0
Apr 28, 2013 19:19:40 GMT -8
Thomasss
5,180
August 2012
thomje112
|
Post by Thomasss on Apr 24, 2013 8:36:37 GMT -8
Was going to post this over in General v5 Discussion but for some odd reason, I don't see "Create Thread" to start a thread? Anyways... would like to change the look from this: to a larger size box and larger size text within it. It says in small font between the two banners, posting has been disabled.
|
|
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,024
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Apr 26, 2013 9:24:26 GMT -8
Try adding the following rule to each of your theme style sheet or add to global header (with "<style>" and "</style>" tags) to affect all themes
.button-fontName .select_menu_list a {font-size:2em;} adjust size as desired also it looks like the box will resize accordingly but if not then we can create a rule for that as well.
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Apr 26, 2013 10:39:59 GMT -8
Thanks Chris and it works perfect to include the box resizing with it. EDIT: well I jumped the gun on this one, as it is working over at my test site: test sitebut no matter where I place it, it does not work on my main site: main site
|
|
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,024
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Apr 26, 2013 16:26:13 GMT -8
If you disable the Quick Reply Buttons plugin it should then work The reason being that plugin moves the menus to the bottom of the page to get around a bug, this means .select_menu_list is no longer a child of .button-fontName so to get around that we can use a different selector that doesn't rely on .button-fontName being an ancestor but also unique enough to hopefully avoid affecting other .select_menu_list menus. .select_menu_list a[style*="font-family"] { font-size: 2em; }
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Apr 27, 2013 6:22:37 GMT -8
That work perfect Chris and I just placed this: <style>.select_menu_list a[style*="font-family"] { font-size: 2em; }</style> in the global header for all themes.
|
|