MyBB Community Forums

Full Version: Help with SPAN! (Don't Know where to post this so sorry if wrong spot)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've made a group legend thing and I need help making the Strike through the banned name white and the name BLACK this is what it looks like BANNED
Here is my code I've used
<span style="color: black;"><s><b>BANNED</b></s></span>
Try this
<span style="color:black"><s><b>Banned</b></s></span>
(2015-10-17, 09:15 AM)BaggerHD Wrote: [ -> ]Try this
<span style="color:black"><s><b>Banned</b></s></span>

I mean I've remember seeing someone do it before but when it shows BANNED the black line through BANNED is white and the WORDS banned are black???
<span style='color:red;text-decoration:line-through'>
  <span style='color:black'>black with red strikethrough</span>
</span>

or

<strike style='color:red'>
  <span style='color:black'>black with red strikethrough<span>
</strike>

source: http://stackoverflow.com/questions/11075...-from-text
(2015-10-18, 03:56 AM)tanuki Wrote: [ -> ]
<span style='color:red;text-decoration:line-through'>
  <span style='color:black'>black with red strikethrough</span>
</span>

or

<strike style='color:red'>
  <span style='color:black'>black with red strikethrough<span>
</strike>

source: http://stackoverflow.com/questions/11075...-from-text

Thank you! Works!