HI - can anyone guide me how to fix this issue with our main navigation bar: I added a top menu item (Outlet) and it has bumped the search icon down onto a 2nd line. How do I get it all back on one level without taking "OUTLET" out of the top menu level? Thank you in advance for help! https://www.elizab.com
Announcement
Collapse
No announcement yet.
Navigation Bar issue on Suivant
Collapse
X
-
Navigation Bar issue on Suivant
Dana Evans
------------------------------
Eliza B. & Leather Man Ltd.
P.O. Box 57
Essex , CT 06426
1-800-243-6681
http://www.elizab.com
http://www.leathermanltd.com
http://www.austinjeffers.com
Tags: None
-
That navigation has a width of 14% for each level-1 category, so when you added outlet it is pushing the search icon to the second line. An easy fix would be to lower this to something smaller like 12%
Code:.navigation-set .level-1 { font-size: 1rem; height: 3.375em; line-height: 3.375; text-transform: uppercase; width: 12%; }
-
Thanks Brennan - I lowered it to 12% and it didn't do anything so I tried 10% and still no go. Something must be overriding that style??Dana Evans
------------------------------
Eliza B. & Leather Man Ltd.
P.O. Box 57
Essex , CT 06426
1-800-243-6681
http://www.elizab.com
http://www.leathermanltd.com
http://www.austinjeffers.com
Comment
-
Originally posted by dtlyme View PostThanks Brennan - I lowered it to 12% and it didn't do anything so I tried 10% and still no go. Something must be overriding that style??
@media only screen and (min-width:960px)
You can try adding the "!important" to what you added (or also change the "media" style too)
width: 10% !important;
Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
-
Leslie - thank you - the addition of the important tag did not do it either :-(. Making the font 0.75rem only made the font smaller - I was hoping smaller font would adjust the menu items width. sigh. Where do I access the @media only screen and (min-width:960px) settings- and what would I adjust that to? I also realize I am missing the right side border on the Eliza B and Leather Man headings. I wonder why that is? Very much appreciate your help!Dana Evans
------------------------------
Eliza B. & Leather Man Ltd.
P.O. Box 57
Essex , CT 06426
1-800-243-6681
http://www.elizab.com
http://www.leathermanltd.com
http://www.austinjeffers.com
Comment
-
Sigh - I am still looking to fix this! My nav is driving me CRAZY!!Dana Evans
------------------------------
Eliza B. & Leather Man Ltd.
P.O. Box 57
Essex , CT 06426
1-800-243-6681
http://www.elizab.com
http://www.leathermanltd.com
http://www.austinjeffers.com
Comment
-
Look in /mm5/themes/suivant/css/structure.css around line 278. This is the piece of code you need to change. Setting the width to 12% seems to do it.
Code:.navigation-set .level-1 { font-size: .9rem; height: 3.375em; line-height: 3.375; text-transform: uppercase; width: 14%; font-weight: 500; }
Comment
Comment