Re: New! Template Package Update with Admin Interface!
Hi, here is one of the product link
http://www.null-audio.com/store/inde...roducts_id=228
Actually it is on all product page...
Re: New! Template Package Update with Admin Interface!
Quote:
Originally Posted by
wkwlb
This is not a template related problem. When you see a constant, it normally means that you are missing a language file. I would look at any modules you have installed or do a developers toolkit search for the constant to see what file is calling it to track down the problem.
Thanks,
Anne
Re: New! Template Package Update with Admin Interface!
Quote:
Originally Posted by
picaflor-azul
This is not a template related problem. When you see a constant, it normally means that you are missing a language file. I would look at any modules you have installed or do a developers toolkit search for the constant to see what file is calling it to track down the problem.
Thanks,
Anne
Thank you for the advice, I was digging around the product info pages with NAVBAR_TITTLE constant
In /includes/modules/pages/product_info/header_php_review.php
around line83 I commented out
$breadcrumb->add(NAVBAR_TITLE);
Then the problem went away. Still trying to figure out which of my addon caused the conflict there.
Thanks!
Re: New! Template Package Update with Admin Interface!
Hi Anne.. Got something strange happening and I'm a little stumped as to where to begin to correct this..
On the product details page the mega menu isn't playing nice with my lightBox. If you click on the main product image for example, you can see the mega menu links are appearing inside the lightbox window. Any ideas on how I might push them to the background??
http://clientlaserdiscvault(dot)over...rdiscs/titanic
Re: New! Template Package Update with Admin Interface!
Quote:
Originally Posted by
DivaVocals
Hi Anne.. Got something strange happening and I'm a little stumped as to where to begin to correct this..
On the product details page the mega menu isn't playing nice with my lightBox. If you click on the main product image for example, you can see the mega menu links are appearing inside the lightbox window. Any ideas on how I might push them to the background??
http://clientlaserdiscvault(dot)over...rdiscs/titanic
Nevermind.. It was just easier to uninstall my other lightbox module and use Zen Lightbox instead..
There is for sure some sort of display conflict between the Lightbox module I was using (it's not Zen Lightbox) and the mega menu.. I can say that since I don't have the same issue with the CSS Menu module and this same lightbox.. So Zen Lightbox solves my issue and I'll just sort out later on my local server why the mega menu and the lightbox module I was using don't play nice together..
Re: New! Template Package Update with Admin Interface!
Quote:
Originally Posted by
DivaVocals
Nevermind.. It was just easier to uninstall my other lightbox module and use Zen Lightbox instead..
There is for sure some sort of display conflict between the Lightbox module I was using (it's not Zen Lightbox) and the mega menu.. I can say that since I don't have the same issue with the CSS Menu module and this same lightbox.. So Zen Lightbox solves my issue and I'll just sort out later on my local server why the mega menu and the lightbox module I was using don't play nice together..
ARRRRGH... may have spoken too soon.. So the mega menu no longer is showing on top of the the lightbox, but the search form does.. See here:
http://www(dot)laserdiscvault(dot)co...-1988-ID5270NW. When you click an image the search form is overlayed on top of the lightbox.. **scratching my head**
Re: New! Template Package Update with Admin Interface!
Quote:
Originally Posted by
DivaVocals
ARRRRGH... may have spoken too soon.. So the mega menu no longer is showing on top of the the lightbox, but the search form does.. See here:
http://www(dot)laserdiscvault(dot)co...-1988-ID5270NW. When you click an image the search form is overlayed on top of the lightbox.. **scratching my head**
You just need to adjust the z-index on the #navMainSearch in the stylesheet.css. Take it down to 5000.
Thanks,
Anne
Re: New! Template Package Update with Admin Interface!
Quote:
Originally Posted by
picaflor-azul
You just need to adjust the z-index on the #navMainSearch in the stylesheet.css. Take it down to 5000.
Thanks,
Anne
I KNEW it was something simple.. Thank you soooooo much!!! You are the BEST!!!
Re: New! Template Package Update with Admin Interface!
Quote:
Originally Posted by
DivaVocals
I KNEW it was something simple.. Thank you soooooo much!!! You are the BEST!!!
So that fixes the problem of the search box appearing on top of the lightbox.. but it stops the search form from working.. (I click inside the search form and am unable to do so)
Re: New! Template Package Update with Admin Interface!
Quote:
Originally Posted by
DivaVocals
So that fixes the problem of the search box appearing on top of the lightbox.. but it stops the search form from working.. (I click inside the search form and am unable to do so)
HA! I made a slight change in the stylesheet_zen_lightbox.css.. So now the template and lightbox seem to play nicely together..
From:
Code:
#lbCenter, #lbBottomContainer {
position: absolute;
z-index: 9999;
overflow: hidden;
background-color: #fff;
}
To:
Code:
#lbCenter, #lbBottomContainer {
position: absolute;
z-index: 16000;
overflow: hidden;
background-color: #fff;
}