How do I make my body text as vibrant as my heading?

I need to make my body text in the product description and paragraph text as vibrant as my headings. Although they are both white, the body text seems to be much more faded compared to my heading. How can I fix this?

https://westaysmiling.com/

1 Like

@westaysmiling

Please find the following CSS code for your assets/base.css file.

color: rgba(var(--color-foreground), 0.75);

Replace to

color: rgba(var(--color-foreground), 1.75);

Thanks!

This worked for the text once you clicked on the product, but had no effect on the front page text under “benefits”.

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css

.image-with-text__text.rte.body {
    font-family: 'Debusen' !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

Unfortunately this solution seems to have no effect.

@westaysmiling

you can try this code

.image-with-text__content>*+* {
    font-family: 'Debusen' !important;
}

Sadly this also had no effect, is there anything else that might work?

actually, I was just foolish and still had my text as heading 6 and not paragraph, this worked perfectly

1 Like