trouble with CSS targeting

Solved
viggostarcke
Excursionist
24 1 2

viggostarcke_0-1699014380200.png

As seen in the picture above I have trouble targeting certain elements on my product page with the font im using.
css like:

label{
font-family: '{{name}}' !important;
}

doesnt do the trick even tho 'Quantity' is a label.

 

Also as a bonus question the I need to remove underlining completely (also hover) from my footer as seen below.

viggostarcke_1-1699014531371.png

 


website is: https://kyototango.myshopify.com/products/beijing-lips

 

thanks in advance

Accepted Solution (1)
Dan-From-Ryviu
Shopify Partner
5415 987 1007

This is an accepted solution.

Please try to add code like this. Make sure you change 'Inter' with your font family name

label {
    font-family: 'Inter' !important;
}

This code is to remove text underlining

.footer-block__brand-info .rte a { text-decoration: unset !important; }

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

View solution in original post

Replies 4 (4)
Dan-From-Ryviu
Shopify Partner
5415 987 1007

This is an accepted solution.

Please try to add code like this. Make sure you change 'Inter' with your font family name

label {
    font-family: 'Inter' !important;
}

This code is to remove text underlining

.footer-block__brand-info .rte a { text-decoration: unset !important; }

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

viggostarcke
Excursionist
24 1 2

thanks:)

viggostarcke
Excursionist
24 1 2

do you know how to change the 'Quantity' label to 'quantity' (non-capital 'Q') and remove underlining from 'More payment options' aswell as changing the beginning letter to non-capital aswell ? thanks in advance! 

Dan-From-Ryviu
Shopify Partner
5415 987 1007

Hi, you can do that by adding this CSS code 

.product-form__quantity .form__label, 
.shopify-payment-button__more-options { text-transform: lowercase;}
.shopify-payment-button__more-options { text-decoration: unset !important; }

Screenshot_1.jpg

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now