How can I modify the mobile logo bar section in the Debut theme?

Hey,

I would like to know how can I change the look of the logo bar section on mobile to have it like on the second picture below ?
Thanks.

Link : https://riku-services.myshopify.com

Password : edohup

How it is now :

![IMG_7896.jpg|1125x2136](upload://3dKaQtbRJSXNoGdl4VA7eeBzy06.jpeg)

What I am looking for :

![Sans titre-3.png|1181x1181](upload://e2JAgzEgRMQhQsboqhq8crIAp1V.png)
1 Like

Please add below css code in bottom of assets/base.css file

@media only screen and (max-width:567px)
ul.logo-bar {
display: flex;
flex-wrap: wrap;
}
@media only screen and (max-width:567px)
li.logo-bar__item {
width: 50%;
display: inline-block;
max-width: 50%;
padding: 5px;
margin: 0;
}

Thank you.

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
@media only screen and (max-width: 488px) {
.logo-bar__item {
	width: 50%;
	max-width: 50%;
	margin: 0 0 35px;
	float: left;
	padding: 0 15px;
	}
}
1 Like

Thanks a lot for the help !

1 Like

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.