Advanced search  

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]

Pages: [1]   Go Down

Author Topic: Eyeball Theme not showing Gallery Title  (Read 3707 times)

0 Members and 1 Guest are viewing this topic.

csondagar

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 30
Eyeball Theme not showing Gallery Title
« 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
Logged

donnoman

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1615
  • From donovanbray.com
    • Donovan Bray
Re: Eyeball Theme not showing Gallery Title
« Reply #1 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.
Logged

csondagar

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 30
Re: Eyeball Theme not showing Gallery Title
« Reply #2 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
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: Eyeball Theme not showing Gallery Title
« Reply #3 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>
Logged
Pages: [1]   Go Up
 

Page created in 0.016 seconds with 20 queries.