Need Help Adding Glow Effect to All Texts, Buttons, and Links Across the Theme

Hi @hatmakerr !

To apply the glow effect globally, you’ll want to add the CSS to the theme.liquid file.

Go Online Store > Themes > Actions > Edit Code

Layout > theme.liquid

Scroll down until you find ‘body’

Add in:

For easy copy and paste:

p, a, .button, h1, h2, h3 {
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.7), 0 0 10px rgba(0, 255, 0, 0.7);
}
button, .button, a {
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.7), 0 0 10px rgba(0, 255, 0, 0.7);
}

In the example I’ve shared, the CSS is targeting the elements and classes that are specific to my test store setup.

For the buttons, you might need to adjust the CSS selectors to match the classes used in your theme.

Hope this helps! Let me know if you need anymore details.