How to achieve outline text in headings

Is it possible to make all heading text affected by CSS? How is this done?

Is it possible to make all headings essentially hollow with an outline? I couldn’t get the following to work but thought it might be possible.

-webkit-text-fill-color: white;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;

Hello @patrickphillips,

Thanks for writing in!

If you want to change he heading tags styling, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

h1, .h1, h2, .h2, h3, .h3, 
h4, .h4, h5, .h5, h6, .h6{
  -webkit-text-fill-color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

Please let us know if this works out for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.