The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
I'm trying to add some css code to hyperlinks that members may post in my forum.
I'm probaly going about this the wrong way but here is what I am trying to do.
Normally in html, I would do this:
<a href="http://www.link.com" rel="example[width height]"</a>
I'm trying to make a tag that I'm currently calling [tag] [/tag].
I've then in inc_func_common.asp added this line with the other forum code entries:
fString = doCode(fString, "[tag]", "[/tag]", "<a href=", " rel=""example[width height]""></a>")
However, after I put my [tag] [/tag] before and after my hyperlink, the link just disappears.
What would be the proper way to have a tag automatically add the part in red above? <
I'm probaly going about this the wrong way but here is what I am trying to do.
Normally in html, I would do this:
<a href="http://www.link.com" rel="example[width height]"</a>
I'm trying to make a tag that I'm currently calling [tag] [/tag].
I've then in inc_func_common.asp added this line with the other forum code entries:
fString = doCode(fString, "[tag]", "[/tag]", "<a href=", " rel=""example[width height]""></a>")
However, after I put my [tag] [/tag] before and after my hyperlink, the link just disappears.
What would be the proper way to have a tag automatically add the part in red above? <