aesir
New Member
Posts: 8
inherit
226828
0
Jul 31, 2024 21:54:15 GMT -8
aesir
8
November 2015
aesir
|
Post by aesir on Nov 18, 2015 3:05:22 GMT -8
I'd like to request a code that hides (or disables) the 'Forward' option from the menu within Personal Messages and anywhere else it might show up. Any help would be greatly appreciated and thank you in advance!
|
|
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,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Nov 18, 2015 9:29:07 GMT -8
A CSS rule such as:
.ui-menu .forward {display:none!important} should disable it for everyone if placed in the stylesheet of the active theme.
If you want it for every single theme without having to add it to each one then you can wrap it in a style tag and place it in the global header instead.
<style type="text/css"> .ui-menu .forward {display:none!important} </style>
|
|
aesir
New Member
Posts: 8
inherit
226828
0
Jul 31, 2024 21:54:15 GMT -8
aesir
8
November 2015
aesir
|
Post by aesir on Nov 18, 2015 20:14:45 GMT -8
Chris , thank you, you lovely, beautiful person!
|
|