Solved

Can I adjust site width for desktop only in the Brooklyn theme?

Fox347
Excursionist
17 0 6

Hi, I am using the Brooklyn theme. How can I change the width of the whole site (except product page) and only on desktop version?

Accepted Solution (1)
Hardik29418
Shopify Partner
2858 407 1073

This is an accepted solution.

Please place this code between <head></head> in theme.liquid file

{% if template.name != 'product' %}
<style>
@media only screen and (min-width: 768px) {
  .wrapper {
        max-width: 1889px;
  }
}
</style>
{% endif %}

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email

View solution in original post

Replies 6 (6)

Hardik29418
Shopify Partner
2858 407 1073

Please provide website url and if your store is password protected then also provide password

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email
Fox347
Excursionist
17 0 6

Can I send it via email? The website hasn't been launched yet. 

Hardik29418
Shopify Partner
2858 407 1073

You can send over Direct message

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email
Hardik29418
Shopify Partner
2858 407 1073

This is an accepted solution.

Please place this code between <head></head> in theme.liquid file

{% if template.name != 'product' %}
<style>
@media only screen and (min-width: 768px) {
  .wrapper {
        max-width: 1889px;
  }
}
</style>
{% endif %}

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email
Fox347
Excursionist
17 0 6

This worked great, thanks!

Hardik29418
Shopify Partner
2858 407 1073

Thank you for update

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email