• dmsimmons69

    (@dmsimmons69)


    I’m using the Avada theme with a WooCommerce Storefront Theme store… I would like to change the font size and color of many of the text areas of the products, but I’m not clear on how to make the changes?? Any help would be appreciated. I’ve tried searching for a solution, but I haven’t had much luck…

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • WooCommerce makes it very hard to change CSS. Have you tried tagging the css statements with the important tag in your custom CSS.

    as an example of what I am talking about see below:

    h1 {
        color: green !important;
    }

    or

    p {
        font-family: "Times New Roman", Georgia, Serif !important;
    }
    Thread Starter dmsimmons69

    (@dmsimmons69)

    I have not tried that, but mainly because I haven’t mastered the skill of locating the appropriate CSS tag to change…I guess I’ll keep plugging away at it and see if i can figure it out.

    Thread Starter dmsimmons69

    (@dmsimmons69)

    Would a product like Prestashop be more customizable than WooCommerce?

    Well, you should be doing custom CSS in a child theme!

    https://codex.wordpress.org/Child_Themes

    You should never modify the CSS in a plugin or theme directly.

    Hope this helps!

    🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘WooCommerce font changes…’ is closed to new replies.