Avatar of Bob Stone
Bob Stone
Flag for United States of America asked on

Dropdown menu on Opencart 2.0.1.1 not working consistently

Building a new Opencart 2.0.1.1 site at http://wichitaoutlet.com/  and drop downs on header menu aren't working right.

The one for Currency works fine but the My Account drop down is showing way at the bottom of the screen. I can't figure out why. The only thing I've added to the header.tpl is a tagline div with position: absolute but it does the same exact thing when I remove it.

How do I fix this?
CSSWeb DevelopmentE-Commerce

Avatar of undefined
Last Comment
Bob Stone

8/22/2022 - Mon
Chris Stanyon

In the bootstrap.min.css there are 2 properties that are causing your menu to be out of position:

.dropdown-menu-right {
   right: 0;
}

.dropdown-menu {
   top: 100%;
}

Open in new window


remove those 2 properties and it'll position correctly.
ASKER CERTIFIED SOLUTION
Chris Stanyon

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Bob Stone

ASKER
Thanks. That worked :)
Your help has saved me hundreds of hours of internet surfing.
fblack61