Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter ericbel

    (@ericbel)

    I ended up figuring out the issue. I had to Flush the Cache out of WordPress and open the site in a Private tab on my phone and tablet. Just figured I would include this here in case someone ends up with the same issue in the future.

    I actually was able to figure this out a little while back. I think what worked for me was changing the max-height of the different CSS elements in the header.

    So for example I changed:

    .site-header {
    min-width: 300px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    }

    To

    .site-header {
    min-width: 300px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    max-height:70px !important;
    }

    I also added this CSS to the Menus section

    .header-cart
    {
    padding:30px 20px !important;
    }

    .site-header .search-block
    {
    padding: 0px !important;
    max-height:70px !important;
    margin:0px !important;
    }

    .menu-search
    {
    padding: 30px 0px !important;
    max-height:70px !important;
    margin:0px !important;
    }

    .fa-search
    {
    padding: 0px !important;
    max-height:70px !important;
    margin:0px !important;
    }

    .site-header .search-field
    {
    padding: 0px !important;
    max-height:70px !important;
    margin:0px !important;
    color: #ffffff !important;
    width:100% !important;
    }

    and in
    .main-navigation ul ul
    I changed top: 143px; to top: 70px; and removed display:none;

    And removed display:none; from .main-navigation ul ul ul

    I hope this helps you, or anyone else who might stumble onto this question.

    Thread Starter ericbel

    (@ericbel)

    Sorry for the delayed response, but I did try some things and ended up figuring out there was a plugin that someone else installed that caused this. Thanks for your help DSmith!

    Thread Starter ericbel

    (@ericbel)

    I posted a new question in the Woocommerce section of the forum (https://wordpress.org/support/topic/woocommerce-slow-for-add-to-cart-buttom/). I didn’t see that section of the forum when I originally posted here. My apologies. I would delete this, but I can’t seem to figure out how.

Viewing 4 replies - 1 through 4 (of 4 total)