Changing the text color for one Promo Grid without affecting all Promo Grids?

Solved

Changing the text color for one Promo Grid without affecting all Promo Grids?

MontseV
Tourist
15 0 1

hello,

I'm not sure if this is possible but I have to Promo Grids on my page and I want the text on one of them to be White and on the other one to be Black. 

 

I tried changing the color myself but it changes the color for of them, I want to separate colors because having them both as black text it gets lost in on one of the images. 

 

I want the one at the top of the page in white text and the one at the bottom with black text. 

 

The theme is Impulse.  I only have a preview link since its not live since im trying to fix it. 

Hope someone is able to help. 

 

Here is the preview URL, hope can still see it. 

https://d662ptjmad4c3zqd-59420672169.shopifypreview.com

 

Screenshot (32).pngScreenshot (33).png

Accepted Solution (1)

PageFly-Victor
Shopify Partner
7865 1786 3131

This is an accepted solution.

Hi @MontseV ,

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> :

<style>
.flex-grid__item.flex-grid__item--100.flex-grid__item--05a51593-5913-4358-a260-ea2959095a39-1680037506e70f7077-0.type-advanced .rte--block{
    color: white;
}

</style>

Hope my answer will help you.

Best regards,

Victor | PageFly

View solution in original post

Replies 2 (2)

PageFly-Victor
Shopify Partner
7865 1786 3131

This is an accepted solution.

Hi @MontseV ,

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> :

<style>
.flex-grid__item.flex-grid__item--100.flex-grid__item--05a51593-5913-4358-a260-ea2959095a39-1680037506e70f7077-0.type-advanced .rte--block{
    color: white;
}

</style>

Hope my answer will help you.

Best regards,

Victor | PageFly

MontseV
Tourist
15 0 1

Thank you! @PageFly-Victor