Does anyone know how I would be able to add a link to the top of the page underneath the name of the Photo Gallery? In phpbb I could add html to the description field, but I find it doesn't work here. Any suggestions? 8)
In themes/yourtheme/template.html, find this code
<h1> {GAL_NAME} </h1>
<h3>{GAL_DESCRIPTION} </h3><br />
{MAIN_MENU}
and add your html links after the '{GAL_NAME}'.
Note, depending on the theme, some formatting may be present, and need adding to get it to look correct.
Quote from: "casper"In themes/yourtheme/template.html, find this code
<h1> {GAL_NAME} </h1>
<h3>{GAL_DESCRIPTION} </h3><br />
{MAIN_MENU}
and add your html links after the '{GAL_NAME}'.
Note, depending on the theme, some formatting may be present, and need adding to get it to look correct.
Thanks, worked well. Just what I needed. 8)