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

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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>