ericbel
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OnePress] Hero Button Size MobileI 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.
Forum: Themes and Templates
In reply to: [FreeStore] How to change header height in theme freestoreI 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.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Slow for Add to Cart buttonSorry 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!
Forum: Plugins
In reply to: WooCommerce Slow Add to CartI 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.