forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: eminitradingschool on July 27, 2014, 04:26:48 pm

Title: "Home Register Login" links not available
Post by: eminitradingschool on July 27, 2014, 04:26:48 pm
"Home Register Login" links not available until you mouse over the upper menu bar.

Is this by design or is there a setting? is it possible to make these links always visible?

Is there a work around?

http://nqtrader/photogallery (http://nqtrader/photogallery)

Title: Re: "Home Register Login" links not available
Post by: Αndré on July 29, 2014, 12:49:18 pm
That's (probably) intended behavior of the theme designer. If you don't like it, you either can adjust that theme or use a different theme. Unfortunately the link to your gallery doesn't work - I always get blank pages.
Title: Re: "Home Register Login" links not available
Post by: eminitradingschool on July 29, 2014, 01:45:09 pm
sorry the link is http://nqtrader.us/photogallery

If you could point me in the direction of how would I go about adjusting the theme also. Thank you.
Title: Re: "Home Register Login" links not available
Post by: Αndré on July 30, 2014, 12:12:33 pm
Open themes/eyeball/template.html, find
Code: [Select]
<div id="Menu1" class="topmenu">and replace with
Code: [Select]
<div id="Menu" class="topmenu">
Open themes/eyeball/style.css, find
Code: [Select]
#Menu1 {
     position:relative;
     width:780px;
     height:15px;
     top: 3px;
     left: 20px;
     visibility: hidden;
}
and replace with
Code: [Select]
#Menu {
     position:relative;
     width:780px;
     height:15px;
     top: 3px;
     left: 20px;
     visibility: visible;
}


Additionally, I suggest to rename your theme: http://documentation.coppermine-gallery.net/en/theme_create.htm#theme_create_rename
Title: Re: "Home Register Login" links not available
Post by: eminitradingschool on July 30, 2014, 02:08:45 pm
Thank you that worked great! Also I have renamed the theme and again thank you for that tip.

One other question regarding the overwriting of themes during upgrade.

1) I created a duplicate theme based off of the eyeball theme that I was customizing.
2) I renamed it nqtheme and change the appropriate pages within.
3) I went into admin panel and selected the new custom theme nqtheme which shows up.

Everything works as expected.

1) Does this safeguard me from overwrites?
2) If an upgrade takes place it does not touch my nqtheme folder?
3) Will I have to reset my theme after an upgrade?

Thank you again.
Title: Re: "Home Register Login" links not available
Post by: Αndré on July 30, 2014, 02:24:15 pm
1) Does this safeguard me from overwrites?
2) If an upgrade takes place it does not touch my nqtheme folder?
The official Coppermine package doesn't contain a theme "nqtheme", so your custom theme won't be overwritten.


3) Will I have to reset my theme after an upgrade?
Not sure what you mean with "reset". The default theme is stored in the database, so it will automatically used after an upgrade. You don't need to set it as default theme again.
Title: Re: "Home Register Login" links not available
Post by: eminitradingschool on July 30, 2014, 02:30:18 pm
Thanks again