View Single Post
  #23  
Old 26th January 2013, 14:20
DARCK's Avatar
DARCK DARCK is offline
Senior Member
 
Join Date: Apr 2011
P2P
Posts: 69
Default
Quote:
Originally Posted by steven2007 View Post
ok but how do I do it for the shoutbox?
For my input text????
edit include/global.php

search:
PHP Code:
$s preg_replace("/\[u\]((\s|.)+?)\[\/u\]/""<span style='text-decoration:underline;'>\\1</span>"$s); 
    
// [u]Underline[/u]
    
$s preg_replace("/\[u\]((\s|.)+?)\[\/u\]/i""<span style='text-decoration:underline;'>\\1</span>"$s); 
add after:
PHP Code:
// [ul]text-shadow[/ul]
    
$s preg_replace("/\[ul\]((\s|.)+?)\[\/ul\]/""<span style='color:#000000;text-shadow: 0px 0px 4px #00ff0f, -1px -1px #808080;font-weight:bold;'>\\1</span>"$s); 
   
// [ul]text-shadow[/ul]
   
$s preg_replace("/\[ul\]((\s|.)+?)\[\/ul\]/i""<span style='color:#000000;text-shadow: 0px 0px 4px #00ff0f, -1px -1px #808080;font-weight:bold;'>\\1</span>"$s); 
bbcode:
PHP Code:
[ul]shadow[/ul
Reply With Quote
The Following User Says Thank You to DARCK For This Useful Post:
romano1 (26th July 2013)