Page 33 of 36 FirstFirst ... 233132333435 ... LastLast
Results 321 to 330 of 357
  1. #321
    Join Date
    Jan 2015
    Location
    UK
    Posts
    31
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by picaflor-azul View Post
    You can use this on 1.5.4. But, this is not responsive so only use it on the desktop layout.

    Thanks,

    Anne
    Hello again Anne,

    Could I please ask how it is possible to only use this on the desk top layout and not affect the responsive layout? I'm currently working locally so am not able to view any changes I make on a tablet.

    Kind Regards

    James

  2. #322
    Join Date
    Jan 2015
    Location
    UK
    Posts
    31
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by DivaVocals View Post
    I made the recommended changes to change my categories dropdown into a two column display. categories are displayed in two columns..
    Hi DivaVocals

    I've read through the thread a couple of times and I'm struggling to see the post that shows how to make the category dropdown into a two column display!? Would you be able to point me in the right direction? I realize you did this a while ago but if there's anyway you could help I'd be most appreciative.

    Kind Regards

    James

  3. #323
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    978
    Plugin Contributions
    6

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by James Bond View Post
    Hello again Anne,

    Could I please ask how it is possible to only use this on the desk top layout and not affect the responsive layout? I'm currently working locally so am not able to view any changes I make on a tablet.

    Kind Regards

    James
    I believe what Anne meant to say is that Pure CSS Mega Menu mod was intended only for mouse-operated devices (desktops and laptops) and, unless modified for touch-screen devices, should be disabled or not loaded into touch-screen devices, especially those with small screens, (eg pads and mobiles). For touch-screen devices, you should use another menu-type, for example those gracefully supplied by Anne in her responsive templates.

  4. #324
    Join Date
    Jan 2015
    Location
    UK
    Posts
    31
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by dw08gm View Post
    I believe what Anne meant to say is that Pure CSS Mega Menu mod was intended only for mouse-operated devices (desktops and laptops) and, unless modified for touch-screen devices, should be disabled or not loaded into touch-screen devices, especially those with small screens, (eg pads and mobiles). For touch-screen devices, you should use another menu-type, for example those gracefully supplied by Anne in her responsive templates.
    Thanks for the reply.

    Yeah, I managed to implement it on the desktop and it looks great. I've also managed to hide it on all screen sizes up to tablets in the landscape position. I can hide it there too but it does keep flashing up as it traverses from portrait to landscape. I'm doing it through @media so I'm hoping I'll be able to sort it fully at a later date. Thanks once again for your input dw08gm, it really is very much appreciated!

    Kind Regards

    James.

  5. #325
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by James Bond View Post
    Thanks for the reply.

    Yeah, I managed to implement it on the desktop and it looks great. I've also managed to hide it on all screen sizes up to tablets in the landscape position. I can hide it there too but it does keep flashing up as it traverses from portrait to landscape. I'm doing it through @media so I'm hoping I'll be able to sort it fully at a later date. Thanks once again for your input dw08gm, it really is very much appreciated!

    Kind Regards

    James.
    If you are using one of my templates that uses php moblie detect you can just create a separate header file for mobile or tablets that does not even call this menu ;-)

    Thanks,

    Anne

  6. #326
    Join Date
    Jan 2015
    Location
    UK
    Posts
    31
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by picaflor-azul View Post
    If you are using one of my templates that uses php moblie detect you can just create a separate header file for mobile or tablets that does not even call this menu ;-)

    Thanks,

    Anne
    Thanks for the tip Anne. Would I need to add some code to the tpl_main_page such as If and else statements? At the moment I'm trying this; where tpl_header.php is the one you included with Westminster_new and tpl_header_desk.php is the one I've done with the mega menu.

    if ( $detect->isMobile() ) {


    $header_template = 'tpl_header.php';
    $footer_template = 'tpl_footer.php';
    $left_column_file = 'column_left.php';
    $right_column_file = 'column_right.php';
    $body_id = ($this_is_home_page) ? 'indexHome' : str_replace('_', '', $_GET['main_page']);
    }else{
    $header_template = 'tpl_header_desk.php';
    $footer_template = 'tpl_footer.php';
    $left_column_file = 'column_left.php';
    $right_column_file = 'column_right.php';
    $body_id = ($this_is_home_page) ? 'indexHome' : str_replace('_', '', $_GET['main_page']);

    }

    I'm not having much luck, and as a newb I'm not even sure if I'm doing the right thing. lol

    rgeards

    James

  7. #327
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by James Bond View Post
    Thanks for the tip Anne. Would I need to add some code to the tpl_main_page such as If and else statements? At the moment I'm trying this; where tpl_header.php is the one you included with Westminster_new and tpl_header_desk.php is the one I've done with the mega menu.

    if ( $detect->isMobile() ) {


    $header_template = 'tpl_header.php';
    $footer_template = 'tpl_footer.php';
    $left_column_file = 'column_left.php';
    $right_column_file = 'column_right.php';
    $body_id = ($this_is_home_page) ? 'indexHome' : str_replace('_', '', $_GET['main_page']);
    }else{
    $header_template = 'tpl_header_desk.php';
    $footer_template = 'tpl_footer.php';
    $left_column_file = 'column_left.php';
    $right_column_file = 'column_right.php';
    $body_id = ($this_is_home_page) ? 'indexHome' : str_replace('_', '', $_GET['main_page']);

    }

    I'm not having much luck, and as a newb I'm not even sure if I'm doing the right thing. lol

    rgeards

    James
    Take a look at the includes/templates/override/templates/tpl_modules_mobile_categories_tabs.php file in the Westminster New package for syntax examples for how to call page specific elements.

    The header is already set up for this. You can just not call the mega menu in the tpl_header_tablet.php or tpl_header_mobile.php files.

    Thanks,

    Anne

  8. #328
    Join Date
    Jan 2015
    Location
    UK
    Posts
    31
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by picaflor-azul View Post
    Take a look at the includes/templates/override/templates/tpl_modules_mobile_categories_tabs.php file in the Westminster New package for syntax examples for how to call page specific elements.

    The header is already set up for this. You can just not call the mega menu in the tpl_header_tablet.php or tpl_header_mobile.php files.

    Thanks,

    Anne
    Thank you so much Anne. You really are a star. Thanks for all your help not to mention your fantastic template and menu!

    You're the best, many thanks and kind regards I send to you!

    James.

  9. #329
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by James Bond View Post
    Thank you so much Anne. You really are a star. Thanks for all your help not to mention your fantastic template and menu!

    You're the best, many thanks and kind regards I send to you!

    James.
    Great! I am happy to have helped you ;)

    Thanks,

    Anne

  10. #330
    Join Date
    Jun 2014
    Location
    hamilton, ohio
    Posts
    100
    Plugin Contributions
    0

    Default Re: Pure CSS Mega Menu

    Quote Originally Posted by picaflor-azul View Post
    If you are using one of my templates that uses php moblie detect you can just create a separate header file for mobile or tablets that does not even call this menu ;-)

    Thanks,

    Anne
    Thats awesome, I didn't know that. Is PHP Mobile Detect possible to install on other templates that don't have it?

 

 
Page 33 of 36 FirstFirst ... 233132333435 ... LastLast

Similar Threads

  1. Help with Mega Menu css customization
    By swdynamic in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 17 Jul 2013, 01:21 AM
  2. v139h Mega Menu Mess
    By traytray in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 20 Nov 2012, 07:58 PM
  3. v150 Mega Menu assistance
    By Fancyfrills in forum Templates, Stylesheets, Page Layout
    Replies: 18
    Last Post: 24 Aug 2012, 06:16 PM
  4. Horizontal Drop Menu sort order of mega-menu
    By familynow in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 19 Oct 2011, 04:39 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR