forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: csondagar on August 11, 2005, 04:11:14 am

Title: Eyeball Theme not showing Gallery Title
Post by: csondagar on August 11, 2005, 04:11:14 am
I just installed coppermine with eyeball theme.  This theme does not show my gallery title. If I select other themes then the title shows up.  How do I enable display of the title on eyeball theme?  Thanks.

Chets
Title: Re: Eyeball Theme not showing Gallery Title
Post by: donnoman on August 11, 2005, 04:25:32 am
Put {GAL_DESCRIPTION} in eyeballs template.html where you would like it to appear.

GAL_DESCRIPTION is not a required field in the theme, and some themes such as eyeball omitted it for aesthetic reasons or design reasons only known to the original author.

I believe ALL core themes in 1.4 will include all of the base elements including GAL_DESCRIPTION However it remains optional and often left out item in user submitted themes.

Good luck.
Title: Re: Eyeball Theme not showing Gallery Title
Post by: csondagar on August 11, 2005, 06:10:01 am
Thanks for a quick response.

Do I need to follow any syntax for {GAL_DESCRIPTION}?  (Sorry, I am completely new to html world).  I would appreciate it if you could provide an example of how I should enter this in template.html.  Thanks.

Chets
Title: Re: Eyeball Theme not showing Gallery Title
Post by: Joachim Müller on August 11, 2005, 09:16:53 am
no, just paste it in as suggested. You'll have to respect html rules, i.e. you mustn't paste it in between <tr> and <td>, but into a place that is allowed to actually contain content (according to html coding standards). If you're unsure, follow this recommendation: find
Code: [Select]
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="20">
        <tr>
                <td align="center" valign="top">
                        {ADMIN_MENU}
                  &nbsp;{LANGUAGE_SELECT_FLAGS}
                        {GALLERY}
                </td>
        </tr>
                <tr>
                <td align="center" valign="top">{THEME_SELECT_LIST}&nbsp;{LANGUAGE_SELECT_LIST}</td>
        </tr>
</table>
and replace with
Code: [Select]
<h3 align="center">{GAL_NAME} - {GAL_DESCRIPTION}</h3>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="20">
        <tr>
                <td align="center" valign="top">
                        {ADMIN_MENU}
                  &nbsp;{LANGUAGE_SELECT_FLAGS}
                        {GALLERY}
                </td>
        </tr>
                <tr>
                <td align="center" valign="top">{THEME_SELECT_LIST}&nbsp;{LANGUAGE_SELECT_LIST}</td>
        </tr>
</table>