Page 75 of 76 FirstFirst ... 256573747576 LastLast
Results 741 to 750 of 754
  1. #741
    Join Date
    Nov 2007
    Location
    UK
    Posts
    102
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Thanks - I'm installing it now.

  2. #742
    Join Date
    Jun 2012
    Posts
    68
    Plugin Contributions
    2

    Default Re: Support for CSS Flyout Menu

    Get Em Fast:
    CSS Flyout Menu is great, thanks.
    I wonder if there is a way to make CSS Flyout Menu and Classic Menu compatible with each other, specifically,
    i. show product count next to category
    ii. Always show Categories and SubCategories when selected
    These two functions are disabled under CSS Flyout Menu.
    http://angelcorp.net/california-baby...&products_id=7
    Again, thanks for contribution. That benefit many users.

  3. #743
    Join Date
    Jun 2012
    Posts
    68
    Plugin Contributions
    2

    Default Re: Support for CSS Flyout Menu show count

    I'm still trying to figure out a way to show count next to category. A new problem came out which I thought wouldn't be hard at the beginning. I'd like to let the font bold (and stay bold) when selected, just like the Classic Menu.
    http://angelcorp.net/zencartscottou/...&products_id=7
    I noticed that
    SPAN.category-subs-parent {
    font-weight: bold; }
    SPAN.category-subs-selected {
    font-weight: bold; }
    are used with Classic Menu, but I cannot successfully apply that to this CSS Flyout Menu after many tries.
    Can someone help me? Thanks.

  4. #744
    Join Date
    Jun 2012
    Posts
    68
    Plugin Contributions
    2

    Default Re: Support for CSS Flyout Menu make font bold when selected

    I found answer to show count next to category:
    http://www.zen-cart.com/showthread.p...troubles/page9
    Get Em Fast, next time when you update, you may add in this function since it's always nice for users to have option. BTW, many thanks to you and DrByte for the contribution.

    Still I haven't found solution to make font bold when selected. Please help. Thanks.

  5. #745
    Join Date
    Jul 2012
    Posts
    58
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by lat9 View Post
    What a great plugin! I'm glad someone posted here; I've been looking for this functionality for a while.
    Hi mate

    I am pretty new to web design, zen cart and same with CSS but so far I've done alright, but I've come unhinged.

    I've created the graphics and got the hover over effect I want on the first set of tabs (category's) but for the life of me I cannot get the same effect on the sub category bars... The image just doesn't seem to small properly, I can get the Mage to show on mouse over but it's just to small any help would be great, if you got Firefox web developer tools just edit CSS on the Xbox page u an see the full style sheet, I've been messing with the bit at the bottom..

    I've tried setting image width to 147px which is its die and same setting for first set of tabs with a width of 100% I've tried anything I could find within the document and nothing's working pulling my hair out

    Any help would be great

    Www.consolecodeslab.com

  6. #746
    Join Date
    Jul 2012
    Posts
    58
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by PeazzAndycresswell View Post
    Hi mate

    I am pretty new to web design, zen cart and same with CSS but so far I've done alright, but I've come unhinged.

    I've created the graphics and got the hover over effect I want on the first set of tabs (category's) but for the life of me I cannot get the same effect on the sub category bars... The image just doesn't seem to small properly, I can get the Mage to show on mouse over but it's just to small any help would be great, if you got Firefox web developer tools just edit CSS on the Xbox page u an see the full style sheet, I've been messing with the bit at the bottom..

    I've tried setting image width to 147px which is its die and same setting for first set of tabs with a width of 100% I've tried anything I could find within the document and nothing's working pulling my hair out

    Any help would be great

    Www.consolecodeslab.com
    Code:
    #dhtmlgoodies_menu{
    	font-family:segoe ui;	/* Font for main menu items */
    background-image: url(/images/mback.png) ;	  
    list-style: none;
              width: 147px;
             
    }
    #dhtmlgoodies_menu	li{	/* Main menu <li> */
    	list-style-type:none;	/* No bullets */
    	margin:0px;	/* No margin - needed for Opera */
    }
    #dhtmlgoodies_menu ul{
    	margin:0px;	/* No <ul> air */
    	padding:0px;	/* No <ul> air */
    }
    #dhtmlgoodies_menu ul li ul{	/* Styling for those who doesn't have javascript enabled */
    	padding-left:10px;
    }
    #dhtmlgoodies_menu	li a{	/* Main menu links */
    	text-decoration:none;	/* No underline */
    	color:#fff;	/* Blue text color */
    
    	height:27px;	/* 20 pixel height */
    	line-height:30px;	/* 20 pixel height */
    	vertical-align:middle;	/* Align text in the middle */
    	margin:1px;	/* A little bit of air */
    	padding:1px;	/* Air between border and text inside */
            text-align:center;
    
    
    	display:block;
    }
    #dhtmlgoodies_menu	li a:hover,#dhtmlgoodies_menu .activeMainMenuItem{
    	background-image: url(/images/mback1.png) ;
            text-align:center;
            text-decoration:underline;
    }
    .dhtmlgoodies_subMenu{
    	visibility:hidden;
    	position:absolute;
    	overflow:hidden;
    	background-image: url(/images/mback.png) ;
            width: 145px;
    	font-family:arial;
    	text-align:center;
    
    }
    .dhtmlgoodies_subMenu ul{
    	margin:0px;
    	padding:3px;
    }
    .dhtmlgoodies_subMenu ul li{
    	list-style-type:none;
    	margin:0px;
    	padding:6px;	/* 1px of air between submenu border and sub menu item - (the "white" space you see on mouse over )*/
    }
    .dhtmlgoodies_subMenu ul li a{	/* Sub menu items */
    	white-space:nowrap;	/* No line break */
    	text-decoration:none;	/* No underline */
    	color:#fff;	/* Black text color */
    
    	height:11px;	/* 16 pixels height */
    	line-height:16px;	/* 16 pixels height */
    	padding:1px;	/* 1px of "air" inside */
    
    	display:block;	/* Display as block - you shouldn't change this */
    }
    .dhtmlgoodies_subMenu ul li a:hover{	/* Sub menu items - mouse over effects */
    	background-image: url(/images/mback1.png) ;
    	color:#bcdc65;	/* White text */
            vertical-align: middle;
            font-family:segoe ui;
    }

  7. #747
    Join Date
    Jul 2012
    Posts
    58
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    still not figured this one out :'(

  8. #748
    Join Date
    Jun 2012
    Posts
    68
    Plugin Contributions
    2

    Default Re: Support for CSS Flyout Menu make font bold when selected


  9. #749
    Join Date
    Mar 2005
    Posts
    229
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu make font bold when selected

    Hello,

    I've installed this mod on ZC 1.5 and it works, I only have one problem, I would like categories which have subcategories to not be linked to pages.
    |Pizzas
    |---Regular
    |-----14"
    |-----16"
    |---Calzone
    I don't want the user to be able to get a page if he clicks on Pizzas nor on Regular but only if the submenu item is the latest child, only for 14", 16" and Calzone.

    Thanks for your help
    Regards
    Hubert

  10. #750
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Support for CSS Flyout Menu make font bold when selected

    This would require some custom code in a file to skip the <a> tag creation unless the category has products. Get Em Fast would be the best one to tell you what file and location to use, and the variable that will indicate product/not.
    It might be possible to use some styling (z-index?) that would transparently cover the unwanted links rendering them unclickable, but I would be concerned that search engines might see that as "black hat" and penalize you.

 

 
Page 75 of 76 FirstFirst ... 256573747576 LastLast

Similar Threads

  1. v151 How to uninstall CSS Horizontal Drop Down Menu (CSS Flyout Header 1.5)
    By cmike in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 15 Feb 2014, 07:39 AM
  2. Flyout Menu CSS For My Template.
    By NathanLee0921 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 26 May 2010, 01:24 AM
  3. Extra text or image inbetween categories for css flyout menu?
    By arniesbarmyarmy in forum Addon Sideboxes
    Replies: 0
    Last Post: 23 Nov 2009, 10:30 AM
  4. css flyout menu (for side nav)
    By gsdcypher in forum General Questions
    Replies: 0
    Last Post: 3 Dec 2007, 12:10 AM

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