Account and cart icons placement on mobile view

Account and cart icons placement on mobile view

jehan70
Excursionist
38 0 5

I want to move menu hamburger, account, and cart icon in logo row.
Also, on desktop site there is this gap in mega menu and search bar.

Screenshot (20)29.pngScreenshot (20)30.jpgScreenshot (20)31.jpg

Replies 6 (6)

Dan-From-Ryviu
Shopify Partner
11549 2259 2445

Hi @jehan70 

Could you share your store URL? 

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

jehan70
Excursionist
38 0 5

Sure, here:
www.abarcy.ae

Dan-From-Ryviu
Shopify Partner
11549 2259 2445

Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings 

@media (max-width: 749px) {
.header__icons { grid-area: heading !important; }  
}

Screenshot 2024-10-14 at 13.53.52.png

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

jehan70
Excursionist
38 0 5

In base.css?
How about desktop site. I just enabled mega menu. It will be visible now.

Dan-From-Ryviu
Shopify Partner
11549 2259 2445

You can add it at the bottom of the base.css file. Here is the final code 

@media (max-width: 749px) {
    .header__icons { 
        grid-area: heading !important; 
    }  
}
@media (min-width: 990px) {
    .header--middle-left {
        grid-template-columns: 1fr 1fr 7fr 1fr !important;
    }
}

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

jehan70
Excursionist
38 0 5

It didn't not work also now sticky header is not working. Maybe that is because of the below code i added for website sliding issue:
@media (max-width: 768px){
html, body {
overflow-x: hidden !important;
}
}