I have a user on my board that is using the text glow feature which is somewhat annoying. They are using it in all of their posts so all we see is bright yellow backgroun with black text when trying to read the posts. Is there any way that I can disable this?
Yep, although it depends on what version of SMF you are using as to how.
halpern, you are using firefox, right?
IE shows a glowing nice text (I don't think they are nice, but much people thinks so) but Firefox shows a bad still background. I use firefox and hate that glowing texts.
Admin Panel > Boards and Topics > Bulletin Board Code > Deselect "glow"
so your forum members won't be able to use it any more.
or in 1.1 you could change the glow BB code to this:
array(
'tag' => 'glow',
'type' => 'unparsed_commas',
'test' => '[#0-9a-z\-]{3,12},([012]\d{1,2}|\d{1,2})(,[^]]+)?\]',
'before' => $context['browser']['is_ie'] ? '<table border="0" cellpadding="0" cellspacing="0" style="display: inline; vertical-align: middle; font: inherit;"><tr><td style="filter: Glow(color=$1, strength=$2); font: inherit;">' : '',
'after' => $context['browser']['is_ie'] ? '</td></tr></table> ' : '',
),IE people will get the glow, and FF+others will get nothing.
Thanks. I just deleted it from the php file. Appreciate the help.
Lainaus käyttäjältä: eldʌkaː - huhtikuu 15, 2006, 08:29:43 AP
or in 1.1 you could change the glow BB code to this:
array(
'tag' => 'glow',
'type' => 'unparsed_commas',
'test' => '[#0-9a-z\-]{3,12},([012]\d{1,2}|\d{1,2})(,[^]]+)?\]',
'before' => $context['browser']['is_ie'] ? '<table border="0" cellpadding="0" cellspacing="0" style="display: inline; vertical-align: middle; font: inherit;"><tr><td style="filter: Glow(color=$1, strength=$2); font: inherit;">' : '',
'after' => $context['browser']['is_ie'] ? '</td></tr></table> ' : '',
),IE people will get the glow, and FF+others will get nothing.
What file needs modifying here?
Thx
Subs.php