Hi, I'm having this problem:
I want to use this code to make a text frame (without links in it):
Code: Select all
<div style="margin-bottom: 10px; background: #000000; padding: 6px; height:auto; border: 2px solid #8C8984; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;color:#bbbbbb;font-family:Courier New">{TEXT}</div>
The problem is that phpbb3 turns de dirrections "
http://www...." to a link automatically.
So i check de Code BB tag y i find the <code></code> HTML tag:
Example of code BB tag:
Code: Select all
<code>http://www.opentz.com.ar http://www.opentz.com.ar</code>
I use the same thing in my bbcode:
Code: Select all
<div style="margin-bottom: 10px; background: #000000; padding: 6px; height:auto; border: 2px solid #8C8984; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;color:#bbbbbb;font-family:Courier New"><code>{TEXT}</code></div>
Now, for some reason that i dont understand:
Code: Select all
<code>http://www.opentz.com.ar <!-- m --><a class="postlink" href="http://www.opentz.com.ar">http://www.opentz.com.ar</a><!-- m --></code>
Like you can see, the first direction is OK, but the second it's modified, WHY?
Thanks for the help, and sorry if I'm not clear.