View Single Post
  #1  
Old 01-25-2014, 04:16 PM
sssssssssss sssssssssss is offline
Cyril Rain
sssssssssss's Avatar
Join Date: May 2003
Location: Texas, USA
Posts: 1,134
sssssssssss will become famous soon enough
Gui Multiline Text Links

Is there a way to take the underline off of links with the html tags in a GUI Multiline? I've tried so many things now....

with and without quotes below
PHP Code:
WindowText.addtext("<font color=white style='text-decoration:none;'><a href=blank>Hello</a></font>"); 
PHP Code:
WindowText.addtext("<font color=white text-decoration=none><a href=blank>Hello</a></font>"); 
PHP Code:
WindowText.addtext("<font color=white text-decoration:none><a href=blank>Hello</a></font>"); 
with and without quotes below
PHP Code:
WindowText.addtext("<font color=white><span style='text-decoration:none'><a href=blank>Hello</a></span></font>"); 
PHP Code:
WindowText.addtext("<font color=white><span text-decoration:none><a href=blank>Hello</a></span></font>"); 
PHP Code:
WindowText.addtext("<font color=white><span text-decoration=none><a href=blank>Hello</a></span></font>"); 
None of these worked. Putting a span in front of the link actually just disabled the link as well...
__________________
Cyril Rain
Creator and leader of SLX
Admin of Elysium
Elysium's Facebook Page: http://facebook.com/GraalOnlineElysium
Graal Forum Thread: http://forums.graalonline.com...
Graalians Thread: http://www.graalians.com...


Reply With Quote