goreSplatter wrote:jumborex wrote:
Note: By the way: do a HTML command exists to open a window in a new tag? I never have seen up to now! 8O
If a new tab is what you meant, then yes. There's a "command":Code: Select all
<a href="http://www.phpbb.com/" target="_blank">www.phpbb.com</a>
That should do it. The
target-Attribute also accepts these values:
- _self - open link in the current window/tab
- _top - when using framesets this link will kill all frames and open w/o frameset
- _parent - almost the same as _top this will only kill the parent frameset
- _blank - open in a new window
[/color]
Just what I was looking for.
OK, I made the BBCode change as was noted. Works perfectly.
That solves 1/2 the problem. One other item needs to be fixed related to this behavior.
In phpbb3, what about simple http://... without the URL tags that automatically turn to links in posts?
I also need those to open as _blank targets.
Anyone know the file and path with what I need to edit and where to add target="_blank"?
That would do it!