Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How do I change the font size of product titles on this website through WordPress?

I am trying to change the font size of the product titles from 14px to 18px or higher. Not sure yet.

Here is how the code looks when I inspect it:

@media only screen and (min-width: 768px)
.woocommerce .product-title-link {
    font-size: 14px !important;

I would like to change the font size using custom css in WordPress.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

product title

In custom css, the code doesn’t translate.

Here is the website: https://www.infinitybellatrend.com/shop/

enter image description here

>Solution :

Try this:

@media only screen and (min-width: 768px) {
    .woocommerce .product-title-link {
        font-size: 18px !important;
    }
}

You need a opening { and closing } for de media query.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading