0

Any idea why my bootstrap 'dropdown-toggle' doesn't work in FF?

LINK

<div class="dropdown pull-right">
<a class="dropdown-toggle" data-toggle="dropdown">CART</a>
<div class="dropdown-menu">
STUFF       
</div>
</div>

Thank you

4
  • you have a JS error on contact.js at line 8, it migth be blocking the rest of the JS code.. try commenting that line and see what happens Commented Sep 25, 2013 at 10:11
  • thanks but didn't change anything Commented Sep 25, 2013 at 10:20
  • commented all JS files and still no change. so it's a css issue? Commented Sep 25, 2013 at 10:24
  • you can hidden class to "dropdown-menu" normal, when you click the cart using jqury delete the hidden class Commented Sep 25, 2013 at 10:51

1 Answer 1

3

In your custom.css you have display:block for drop-down menu,thus overriding the bootstrap display:none, so comment it out it and see what happens in FF.

Sign up to request clarification or add additional context in comments.

2 Comments

Thank you. You are refering to the 'display: inline-block;' but still no-go :( btw sorry for the messy custom.css
No, I am referring to this:.dropdown-menu { -webkit-transform-origin: top; transform-origin: top; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-transform: scale(1, 0); display: block; transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; padding:10px; }

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.