Page 1 of 2 12 LastLast
Results 1 to 10 of 2344

Hybrid View

  1. #1
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for your header- With Categories!

    Quote Originally Posted by kburner View Post
    I am still struggling with css with this mod. I love it - but can not get it to work. I have been going thru large forum looking for answers.

    ***I have 13 categories - how do I get them to fit?? I have hidden at this time because it causes them to go to next line.

    ***Extra space above categories in FF but not IE.


    Please help!

    Thanks, Kim
    Any one??

  2. #2
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for your header- With Categories!

    Been working very hard to get this to work! Almost there...

    ***I have 13 categories - how do I get them to fit?? I have hidden at this time because it causes them to go to next line.
    Finally got all 13 to fit---used
    #divdropMenu li

    div#dropMenu li {
    position:relative;
    list-style:none;
    margin:0;
    margin-left: .5px;
    float: left;
    line-height:1em;
    width: 7.6%;
    text-align:center;
    }

    ***Extra space above categories in FF but not IE.
    Now works in FF but not IE... This is what code looks like.

    div#dropMenu {
    position:relative;
    width: 100%;
    height: 25px;
    margin-top: -10.99px;
    margin-bottom: .19px;
    text-align:center;
    z-index: 1000;
    font-family: Lucida Sans;
    }


    Any suggestions on how to get IE to work?

    Thanks, Kim

  3. #3
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: CSS Dropdown menu for your header- With Categories!

    Quote Originally Posted by kburner View Post
    Been working very hard to get this to work! Almost there...

    ***I have 13 categories - how do I get them to fit?? I have hidden at this time because it causes them to go to next line.
    Finally got all 13 to fit---used
    #divdropMenu li

    div#dropMenu li {
    position:relative;
    list-style:none;
    margin:0;
    margin-left: .5px;
    float: left;
    line-height:1em;
    width: 7.6%;
    text-align:center;
    }

    ***Extra space above categories in FF but not IE.
    Now works in FF but not IE... This is what code looks like.

    div#dropMenu {
    position:relative;
    width: 100%;
    height: 25px;
    margin-top: -10.99px;
    margin-bottom: .19px;
    text-align:center;
    z-index: 1000;
    font-family: Lucida Sans;
    }


    Any suggestions on how to get IE to work?

    Thanks, Kim
    See how in my original file, I have two width's for div#dropMenu li, and the second one starts with a *? That asterisk one is for IE only:

    Code:
    div#dropMenu li {
    	position:relative;
    	list-style:none; 
    	margin:0; 
    	float:left; 
    	line-height:1em;
    	width:16.667%;
    	*width:16.649%;
    	}
    So you need to add *width:7.5;

    to your div #dropMenu li. Or something like that, basically IE needs a slightly smaller percentage.

  4. #4
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for your header- With Categories!

    Quote Originally Posted by jettrue View Post
    See how in my original file, I have two width's for div#dropMenu li, and the second one starts with a *? That asterisk one is for IE only:

    Code:
    div#dropMenu li {
    	position:relative;
    	list-style:none; 
    	margin:0; 
    	float:left; 
    	line-height:1em;
    	width:16.667%;
    	*width:16.649%;
    	}
    So you need to add *width:7.5;

    to your div #dropMenu li. Or something like that, basically IE needs a slightly smaller percentage.
    I tried and it did not work. I need it to work on top/bottom margins.

    I even tried it with *margin-top: ...in #divdropMenu.
    Kim

  5. #5
    Join Date
    Sep 2008
    Posts
    3
    Plugin Contributions
    0

    css problem Re: CSS Dropdown menu for your header- With Categories!

    Hi there,

    How can I get the submenu to align with the main button?

    If you look at the website:
    http://www.1800computers.com.au/shop/

    You can see the horizontal blue bar which looks good, stretching all the way, but when you hower over a link, the submenu doesn't align with the main button.

    How can I fix this? I tried editing few options in stylesheet_header_menu.css file but no luck.

    By the way, thanks for the great addon, awesome stuff.

  6. #6
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for your header- With Categories!

    Quote Originally Posted by kburner View Post
    I tried and it did not work. I need it to work on top/bottom margins.

    I even tried it with *margin-top: ...in #divdropMenu.
    Kim
    Managed to get spacing working when NOT logged-in. But messes up again in both IE and FF - when I log-in.

    I really like this mod. The rest of header looks pretty good.

    Any ideas on how to fix.

    Thanks,Kim

  7. #7
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,674
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for your header- With Categories!

    I am using the Mother Earth Template I have try this on that template and it looks horrible How can use the orange bar across the header.

  8. #8
    Join Date
    Nov 2008
    Location
    Slovenija
    Posts
    119
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for your header- With Categories!

    I need that the css flyout header work also with previous version od IE.

    I add the code to the .htaccess like it's writen in the readme, but it doesn't work.

    I have installed also the simple SEO module.

    Maybe my code is not combined well.

    Here is my .htaccess file:

    PHP Code:
    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase / 
    RewriteBase /

    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]

    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond 
    %{SCRIPT_FILENAME} !-d
    RewriteRule 
    ^(.*) index.php?/$[E=VAR1:$1,QSA,L]
    #### EOF SSU


    #### BOF SSU
    Options +FollowSymLinks
    RewriteEngine On
    # Change " RewriteBase / to the correct setting
    # if your site is located at root folder, then you should have RewriteBase /
    # Go to your include/configure.php, this value should be the same with the value of DIR_WS_CATALOG
    RewriteBase /

    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]

    RewriteCond %{SCRIPT_FILENAME} -[OR]
    RewriteCond %{SCRIPT_FILENAME} -d
    RewriteRule 
    .* - [L]

    RewriteRule ^(.+) index.php/$[E=VAR1:$1,QSA,L]

    #### EOF SSU

    #### BOF  CSS FLASH HEADER

    RewriteEngine On
    RewriteCond 
    %{HTTP_HOST} ^basicinstinctlingerie.com$ [NC]
    RewriteRule ^(.*)$ http://www.basicinstinctlingerie.com/$1 [R=301,L]

    #### EOF CSS FLASH HEADER 

    Thank's for your help!
    I love internet and the power of information... Best Wishes!!

  9. #9
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for your header- With Categories!

    I am still working on categories in my header. I dropped one trying to get all to fit.

    Still does not look very good and categories are running together like Homeschool and kids.

    Still Need:
    1. Categories to line up across -spacing
    2. When hover over Christian Living - covers words up

    Any suggestions? Kim

    www.burnerbooks.com

  10. #10
    Join Date
    Aug 2009
    Posts
    104
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for your header- With Categories!

    Installed on my 1.3.8a and working like a charm, just got to edit the stylesheet tomorrow to change the colours!


    Thankyou for such a great add-on!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Categories dropdown menu/css
    By KenshiroU in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 5 Apr 2013, 01:04 PM
  2. HIde categories mod with css dropdown menu
    By adowty in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 9 Feb 2012, 01:05 AM
  3. How to use ezpages/categories as dropdown menu in the header?
    By mdivk in forum Templates, Stylesheets, Page Layout
    Replies: 12
    Last Post: 21 Dec 2011, 06:32 PM
  4. whats wrong with this css for my dropdown menu?
    By 1kell in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 28 May 2010, 02:47 AM
  5. Header Dropdown Menu (CSS) Without the Dropdown???
    By hcd888 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 27 May 2009, 01:20 AM

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