How can I make my logo module full width on a Turbo Theme?

How can I make my logo module full width on a Turbo Theme?

geanyesboy
Tourist
4 0 3

Hello, I am trying to make my logo module full-width and can't figure out how. It looks fine on mobile but it's small on desktop. https://www.hfcousa.com

 

Screenshot 2024-04-19 133653.png

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
10132 2403 3036

Hi @geanyesboy 

The default width is 1200px;

You can check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

div#shopify-section-template--15371658231874__logo_bar_ByyFUt section.section {
    max-width: 100%;
}

 

And Save. 

Result:

Made4uoRibe_0-1713553817326.png

Just a question, you have plan to add more icons? if not you can remove the arrows on the dekstop view. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
geanyesboy
Tourist
4 0 3

Thanks for replying. I added the code you suggested but it did not work.

Made4uo-Ribe
Shopify Partner
10132 2403 3036

Try to add !important like this. 

 

div#shopify-section-template--15371658231874__logo_bar_ByyFUt section.section {
    max-width: 100% !important;
}

 

And Save. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.