How to modify headers for individual product pages in Dawn theme? (Mobile)

Solved

How to modify headers for individual product pages in Dawn theme? (Mobile)

ArnauP
Explorer
54 4 9

Hi i would like to be able to make padding-left: 0px; in the header of the product page only (ON MOBILE), I have seen that there are people who use this code in theme liquid:

 

{%- if template.name == 'product' -%}
<style>
@media screen and (max-width: 749px) {
.header {
padding-left: 0px !important;
}
}
</style>
{%- endif -%}

 

but it does not work for me.

 

https://jaccomcollection.com/products/jaccom-cotton-t-shirt-1

 

Thanks You!

Accepted Solution (1)

Rahul_dhiman
Shopify Partner
784 150 164

This is an accepted solution.

Hello @ArnauP 
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> section-main-product.css
add this code at the end of the file.

@media screen and (max-width: 749px) {
#shopify-section-sections--23363770253654__header .header {
padding-left: 0px !important;
}
}

result
8.png

If this was helpful, hit the like button and accept the solution.
Thanks

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

View solution in original post

Replies 2 (2)

Rahul_dhiman
Shopify Partner
784 150 164

This is an accepted solution.

Hello @ArnauP 
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> section-main-product.css
add this code at the end of the file.

@media screen and (max-width: 749px) {
#shopify-section-sections--23363770253654__header .header {
padding-left: 0px !important;
}
}

result
8.png

If this was helpful, hit the like button and accept the solution.
Thanks

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

Rahul_dhiman
Shopify Partner
784 150 164

Thanks for accepting my solution
can you please buy me a coffee for my work.

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages