How to increase product price on Debut theme only on product pages?

Solved

How to increase product price on Debut theme only on product pages?

quiztrail
Explorer
61 0 17

Hi - I'd like to increase the price on my product pages ONLY - how do I do this?

 

I have tried the below code, but it changes the size on my homepage & collection pages too, which I do not want. How can I make this on product pages only?

 

.price-item--regular {
font-size : 30px ;
}

Thank you in advance. 

Accepted Solution (1)

PageFly-Victor
Shopify Partner
7865 1786 3131

This is an accepted solution.

Hi @quiztrail ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store -> Theme -> Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before </body> :

{% if canonical_url contains 'products' %}
  <style>
.price-item {
    font-size: 30px;
}
  </style>
{% endif %}

Hope my answer will help you.

Best regards,

Victor | PageFly

View solution in original post

Replies 3 (3)

PageFly-Victor
Shopify Partner
7865 1786 3131

This is an accepted solution.

Hi @quiztrail ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store -> Theme -> Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before </body> :

{% if canonical_url contains 'products' %}
  <style>
.price-item {
    font-size: 30px;
}
  </style>
{% endif %}

Hope my answer will help you.

Best regards,

Victor | PageFly

quiztrail
Explorer
61 0 17

Hi Victor - worked perfectly. Thank you for your help as always! 🙂 

jzridgewood
Visitor
2 0 0

This worked for me (Origin theme). Thanky you!