Quote:
Originally Posted by Gleedo
Upon editing the bbcode, i get the following:
Code:
The following BB Code replacement may not be properly formed. All HTML attributes should be enclosed within double quotes.
<span style="text-shadow: {option} 0px 0px 5px;">{param}</span> <!--[if IE]> <div style="filter:progid:DXImageTransform.Microsoft.Glow(color={option}, strength=1);width:100%">{param}</div> <![endif]--> <![if !ie]> <span style="text-shadow: {option} 0px 0px 5px;">{param}</span> <![endif]>
I tried it and on FF it outputs the glow text twice 
|
It looks like you didn't delete the old replacement text before adding the new replacement text... the code should only be:
Code:
<!--[if IE]>
<div style="filter:progid:DXImageTransform.Microsoft.Glow(color={option}, strength=1);width:100%">{param}</div>
<![endif]-->
<![if !ie]>
<span style="text-shadow: {option} 0px 0px 5px;">{param}</span>
<![endif]>
You still have the original " <span style="text-shadow: {option} 0px 0px 5px;">{param}</span>" at the start of your code- that's why it's happening twice.
As for the "The following BB Code replacement may not be properly formed. All HTML attributes should be enclosed within double quotes." error you can safely hit "continue" it is a bug in VB, as you can see all HTML attributes are in double quotes. I think VB doesn't like the "if" statements but they still work.
I will update the instructions to warn people though thanks.