Eyeball Theme not showing Gallery Title Eyeball Theme not showing Gallery Title
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Eyeball Theme not showing Gallery Title

Started by csondagar, August 11, 2005, 04:11:14 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

csondagar

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

donnoman

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.

csondagar

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

Joachim Müller

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<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<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>