Okay
  Public Ticket #332632
drop down too low on menu button
Closed

Comments

  •  1
    Mark started the conversation

    I made another custom menu button using the custom css you sent earlier but it has a drop down and it shows up too low. I want it to show up like the 

  •  8,453
    Tahir replied

    Hey Mark!

    I see you have set a password for it ?. Could you let us know it so i can check on it. 

    Thanks


    ThemeNectar Support Team 

  •  1
    Mark replied

    I had to do something quicker since we were launching the site. I found that if I went to "page transitions" and turned off ajax the menus worked fine. So, something is up with ajax. Also the hosting provider said they were seeing errors with ajaxify.js. I tried deleting the theme and reinstalling it via wp-admin and also via ftp, but no luck. If I do a clean install of wordpress it works perfectly so I can only deduce that the core of Wordpress got messed up somehow.

    I can enable ajax again on a dev site so you can see...let me know...it was a real pain and I am still worried there is something deeper going on that will bite me later on if I don't fix it. My plan C is to do a clean install of Wordpress and recreate each page by hand...ugh...time consuming.

    Let me know..thanks, Mark

  •  8,453
    Tahir replied

    Hey Mark!

    Set the Ajax method to "Standard" and it should work alright. 

    Thanks


    ThemeNectar Support Team 

  •  1
    Mark replied

    Sorry, now back to my original question. I create an example page, http://www.soccersalam.org/home-test/

    and I made the "get involved" menu item look like a button but the drop down does not look good. I want it to look like the drop down on "who we are". What should the css look like?

    thanks

  •  8,453
    Tahir replied

    Hey Again!

    Remove your button css and add this :

    body header#top nav > ul > li.menu-button2 > a {
        box-shadow: 0 -1px rgba(0, 0, 0, 0.1) inset;
        -moz-box-shadow: 0 -1px rgba(0, 0, 0, 0.1) inset;
        -webkit-box-shadow: 0 -1px rgba(0, 0, 0, 0.1) inset;
        -o-box-shadow: 0 -1px rgba(0, 0, 0, 0.1) inset;
        transition: opacity 0.3s linear;
        -moz-transition: opacity 0.3s linear;
        -webkit-transition: opacity 0.3s linear;
        -o-transition: opacity 0.3s linear;
        background-color: #62aded;
        padding: 6px 8px!important;
        margin-top: 0px!important;
        color: #fff!important;
        top: -3px;
        border-radius: 2px 2px 2px 2px;
        font-family: 'OpenSansbold';
        font-size: 13px;
        letter-spacing: 2px!important;
        text-transform: uppercase;
    }
    
    
    
    
    body .small-nav header#top nav > ul > li.menu-button2 ul.sub-menu {
        top: 62px !important;
    }
    body header#top nav > ul > li.menu-button2 ul.sub-menu {
        top: 68px !important;
    }
    

    Best,

    -T


    ThemeNectar Support Team