Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
I was wondering if anyone else is having problems with there mobile menus showing up on tablets and phones. I have just the tray menu on and not the header one. Any help would be greatly appreciated. The web site is http://www.onevisionfineart.com
Thanks,
Brian
Offline
in your page template, check out the Display setting under Navigation, Trays. I'm guessing it's set to "disabled"
Also, you have no navigation on your home page on the desktop. Either use a two column layout with navigation in the tray, or enable navigation in the header.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thanks I got it
Offline
Nice job on the menu. There's one little problem and it's not yours.
In Firefox, the flyout menu for Social Media is being hidden behind the Flickity slide show. This z-index problem has cropped up in other areas with Firefox. Something for Matt to fix.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Edit the file /backlight/modules/standard-page/dynamic/css/layout.php.
Locate:
[data-layout~="left"] .page__tray[data-position="T1"],
[data-layout~="3col"][data-layout~="split"] .page__tray[data-position="T1"],
[data-layout~="3col"][data-layout~="left"] .page__tray[data-position="T2"]
{
box-shadow: 3px 0 4px rgba( 0, 0, 0, 0.25 );
z-index: 1;
}
[data-layout~="2col"][data-layout~="right"] .page__tray[data-position="T1"],
[data-layout~="2col"][data-layout~="split"] .page__tray[data-position="T1"],
[data-layout~="3col"][data-layout~="right"] .page__tray[data-position="T1"],
[data-layout~="3col"][data-layout~="split"] .page__tray[data-position="T2"]
{
box-shadow: -3px 0 4px rgba( 0, 0, 0, 0.25 );
z-index: 1;
}
Update the z-index values from 1 to 2.
Offline
Pages: 1