Line height for headers...

Hi guys! I would like to lessen the line height for headers and wonder what code I need to use for that. I toyed with it for a while with no luck and I am not finding anything in the forums.

I’m using BB Builder & Theme.

Thanks!

I am referring to h1, h2, etc. Not the actual header. Thought I should clarify.

Hey Shawn,

Thanks for getting in touch! The only way to do that is via custom CSS. Try the CSS snippet below.

h1 {
  line-height: 1em;
}

You can also declare more than one tag like so…

h1, h2 {
  line-height: 1em;
}

These go into Theme Customizer > Code > CSS Code.

Hope this helps!

Ben

Sweet, that does it, thanks!

No worries! Enjoy BB! :slight_smile:

Ben