TinyPortal
Development => Support => Topic started by: PalmBeachPreps on March 03, 2009, 09:28:57 PM
Sorry if this has been covered, but I tried a search and nothing helpful became of that.
My question is simple (maybe TOO simple), but how do I enable a links block?
Links to what exactly?
Please read the Posting Guidelines (http://www.tinyportal.net/index.php/topic,581)
Link to my site: http://www.palmbeachpreps.com
SMF version: 1.1.8
TP version: 0.983
Theme name and version: Tropic (Core theme)
Mods installed: Hide "Logged" and IP Image, Border data on topic view
As for the links, I want to display links as they are in the block to the left of this forum.
OK got you, all you need is a html/script block with the relevant html code
for text links it will be something like this
<br><a href="http://www.yourlink.com">link1</a></br>
for image links like this
<br><a href="http://www.yourlink.com">
<img border="0" src="http://www.yourlink.com/img.gif" width="83" height="83"></a></br>
each of these can be repeated for each link you need
Hope this helps
Forgot to add if you want the link to open in a new window the first section of the code you need to add this to the end
target="_blank"
so it would look like this
<br><a href="http://www.yourlink.com" target="_blank">link1</a></br>
Thank you, Thank you, THANK YOU!
Glad to help, marked as solved