CSS for Ruby to increase font space for all headers please

I’ve run into a problem with the Ruby theme by Elixir while trying out the Rapidcart Pro demo and was advised by Rapidcart support that Ruby “forces font space to -2px for all headers.”

A CSS to to increase the font space for all headers would be most appreciated.

Thanks very much!

Try:

h1, h2, h3, h4, h5, h6 {
    letter-spacing: normal;
}

Play around with it though. You can substitute “normal” with 0px, -1px, 4px… whatever gets you to the place your going in your project.

Thanks so much Kryten - that worked perfectly! Just changed it to 0px. Actually that was an annoying thing on all headers in the theme, so it helped much more than the problem with the Rapidcart pages. I really appreciate all your help!