Adding glow to rich text

Solved

Adding glow to rich text

StafMeister
Excursionist
34 1 9

Hi, is there any way to add glow or flickering effect to the rich text title? This is my url: https://a53bc7-32.myshopify.com/password and the text I want to add glow/flickering is that says "Stay in the shadows..." I really appreciate your help

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
8303 1994 2453

This is an accepted solution.

Oh, I see. check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@keyframes flicker {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
                     0 0 20px rgba(255, 255, 255, 0.5),
                     0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
                     0 0 15px rgba(255, 255, 255, 0.3),
                     0 0 25px rgba(255, 255, 255, 0.2);
    }
}

h2.rich-text__heading.rte.h2 {
    animation: flicker 1.5s infinite alternate;
    color: #fff; 
}

 

And Save. 

Result:

Made4uoRibe_0-1725740571914.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 4 (4)

Made4uo-Ribe
Shopify Partner
8303 1994 2453

Hi @StafMeister 

It's password protected. 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
StafMeister
Excursionist
34 1 9

Yes, I want to add glow effect to the text on the password page...

Made4uo-Ribe
Shopify Partner
8303 1994 2453

This is an accepted solution.

Oh, I see. check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@keyframes flicker {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
                     0 0 20px rgba(255, 255, 255, 0.5),
                     0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
                     0 0 15px rgba(255, 255, 255, 0.3),
                     0 0 25px rgba(255, 255, 255, 0.2);
    }
}

h2.rich-text__heading.rte.h2 {
    animation: flicker 1.5s infinite alternate;
    color: #fff; 
}

 

And Save. 

Result:

Made4uoRibe_0-1725740571914.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
StafMeister
Excursionist
34 1 9

It worked! Thank you very much 🙂