Re: How to get rid of the white space on product page

Solved

How to get rid of the white space on product page

Donovan26
Tourist
11 0 1

I want my product media to take up the entire left half of the page without the white spaces. I only need these white spaces gone on product pages. As reference you can look at Louis Vuittons product pages: https://de.louisvuitton.com/deu-de/produkte/color-blossom-mini-sun-ring-rosegold-malachit-und-diaman....

My page is: coshcosh.com

Screenshot (26).png

Accepted Solution (1)
Hardik2903
Pathfinder
95 8 12

This is an accepted solution.

@Donovan26 

Please go to
1) Online store
2) Themes -> Edit theme
3) Layout
4) theme.liquid and paste this code before </head>

 

 

{% if template.name == 'product' %}
  <style>
    .page-width {
      max-width: 100% !important;
    }
  </style>
{% endif %} %}

 


 If my solution works, then please like and accept it as  a solution.

View solution in original post

Replies 3 (3)

Hardik2903
Pathfinder
95 8 12

@Donovan26  Please provide with your website URL.

Donovan26
Tourist
11 0 1
Hardik2903
Pathfinder
95 8 12

This is an accepted solution.

@Donovan26 

Please go to
1) Online store
2) Themes -> Edit theme
3) Layout
4) theme.liquid and paste this code before </head>

 

 

{% if template.name == 'product' %}
  <style>
    .page-width {
      max-width: 100% !important;
    }
  </style>
{% endif %} %}

 


 If my solution works, then please like and accept it as  a solution.