Inspired by the original PBase forum post by Matias.
A lot of PBase users don't know too much about HTML codes. They don't need to, but to exploit the full capability of PBase, it is good to know few basic HTML codes to create customised presentations in galleries. Note that these HTML tips are specific to “galleries” and not PBase forums (which use BBCode. Also remember that after you add HTML to your gallery description, do check/select the “html flag” box in the 'edit' page.
<p align="center">Text</p>
Note that “center” can be changed acording to your desires.
<br />
<b> at the begining and </b> at the end so this code: it is <b>there</b>
should look like this:
it is there
<a href="http://www.__SELECTED__URL__"> Press here for Link </a>
Note that the second part of the code with the ”/” closes the link. For example this
try to look at <a href="http://www.__SELECTED__URL__">this image</a> and give your opinion
should look like this
try to look at this image and give your opinion
If you want to make the new link in a new window, use this code.
<a href="http://www.__SELECTED__URL__" target="_blank">this image</a>
<img SRC="http://www.pbase.com/image/__IMAGE__NUMBER__.jpg" />
Note that ”.jpg” must be added to the end of the line. Also note that the correct URL does have those elements.
<a href="http://www.__SELECTED__URL__"><img src="http://www.pbase.com/image/__IMAGE__NUMBER__.jpg"/></a>
Note that these last code is a combination from the previous two.