Home Forums Basel support forum Hide Icons and customize logo

Hide Icons and customize logo

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #133092

    Ramialshami
    Participant

    Hi
    I need help with these two points

    1- Make logo bigger

    2- Hide cart & wishlist icons from mobile

    Please watch the video
    https://www.loom.com/share/22bb51fd5c394f8d8afb06ee08e793ea

    Thanks 🙂

    #133236

    Hello,

    1. You can configure the logo in the Theme Settings > Header > Logo

    2. Add this code to Mobile.

    body .wishlist-info-widget,
    body .shopping-cart basel-cart-design-3{
    display:none!important;
    }

    Best Regards

    #133275

    Ramialshami
    Participant

    Hi Elise
    This line has error “display:none!important;”
    Whishlist icon disappears but cart doesn’t. The problem is it disappears frob both header and bottom bar. I want to be hidden from header only

    Thanks

    #133362

    Hello,

    This is not an error. http://prntscr.com/ogr252 This is a notification. It is ok.

    Best Regards

    #133385

    Ramialshami
    Participant

    Hi

    Ok. This is not error 🙂
    But we still have 2 issues:
    1- Wishlist Icon is hidden from header and bottom mobile bar as well. I need it to be hidden from only header.
    2- Cart Icon still apprearing 🙂

    #133413

    Hello,

    Replace the code with this one:

    body .wrapp-header .wishlist-info-widget,
    body .wrapp-header .shopping-cart{
    display:none;
    }

    Best Regards

    #133424

    Ramialshami
    Participant

    Thanks a lot, Elise
    It works perfectly now.
    Hidden from header
    Sticky header still has them. DO we have to update the code to make it work for the sticky header also?

    #133465

    Hello,

    Try this code, please:

    body  header .wishlist-info-widget,
    body  header .shopping-cart{
    display:none;
    }

    Best Regards

    #133689

    Ramialshami
    Participant

    Hi Elise

    Thanks for the code.
    It is the same as before. Hidden from header and still appear on sticky header.
    I tried the last code alone and no change. And put it together with the previous one and no change

    #133717

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body div.sticky-header .wishlist-info-widget,
    body div.sticky-header .shopping-cart{
    display:none;
    }

    Best Regards

    #133718

    Ramialshami
    Participant

    Thanks a lot Elise 🙂
    Working fine now
    I wanna make logo bigger on mobile in header & sticky header. When I try to increase header height on mobile it gets bigger but logo is displayed the same. How to make logo bigger on mobile in both header & sticky header?

    thanks 🙂

    #133751

    Hello,

    You need to configure logo in the Theme Settings > Header > Logo. Make sure you have uploaded image big enough. It is not possible to set different logo size for sticky, mobile and desktop.

    Best Regards

    #133753

    Ramialshami
    Participant

    Hi Elise
    Thanks for reply
    These settigns does not affect mobile logo size. No matter what is done it is the same size. You can try it yourself. Changes appy on desktop only for header and sticky.
    I wanna make logo look fine on mobile
    Logo width was around 1300px and current is 400 and they are displayed the same. Changed settings and nothing happens on mobile
    If there is no settings for it may be a code would solve it
    Thanks

    #133782

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    @media (max-width: 991px){
    body .main-header .site-logo {
        width: 100%;
    	height:auto;
    	max-height:100%;
    }
    body .main-header .wrapp-header {
        min-height: auto;
    }
    }

    Best Regards

Viewing 14 posts - 1 through 14 (of 14 total)