Menu in Firefox not wanting to dropdown

Forums Forums Menus Menu in Firefox not wanting to dropdown

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #184
    Judhudson
    Member

    This is an issue I can’t seem to figure out.  I’m an IE guy, so I don’t know much about Firefox.  When I got to work and checked my site in the Firefox browser, for some reason the menu is not wanting to drop down like it has been doing (properly) in IE. 

    Is anyone else getting the same problem?  I’m running 2.0.0.13

    http://www.simprograms.com

    #2821

    IE is a truly awful browser. If you code for IE your sites will almost certainly break in all modern browsers.

    For some reason IE is rendering the following code as a regular link, however it should not as it is coded incorrectly.
    [code:2r2jb6lj]<li><a name=>The Sims 3 | </a>[/code:2r2jb6lj]

    It should instead look like this:
    [code:2r2jb6lj]<li><a href="">The Sims 3 | </a>[/code:2r2jb6lj]

    #2822
    Judhudson
    Member

    Ah, so that is supposedly breaking it?  I changed it from <a href=""> to <a name=""> as because I didn’t want users to click on the sections of the menu.  I’ll just wiped out the <a> parts and give change the CSS to have the same styles as the <a> links (just not clickable).

    Thank you.  Guess I should install FireFox at home.

    #2823
    Judhudson
    Member

    Well, I changed them to their proper code, <a href=""> and it doesn’t appear that that was the problem in Firefox…

    #2824
    Judhudson
    Member

    Sweet, after some testing with my CSS, I found the problem.  I had this:

    -moz-opacity:0;
    opacity:0;
    khtml-opacity:0

    when it should of been this:

    -moz-opacity:1;
    opacity:1;
    khtml-opacity:1

    #2825

    If you have an opacity of 1 you could just remove them entirely as they’re redundant then. By default, all opacities are set to 1.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.