Tagged: H1, letter-spacing
on this page:
http://andes-world-travel.theunsteadyproblem.com/trekking/
can you tell me where this letter-spacing is set? The h1 header has a 1px spacing that I don’t want.
#Page Styles
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2{
text-transform: uppercase;
letter-spacing: 1px;
}
The h1 header has a 1px spacing that I don’t want. Can you tell me how to set it at 0?
Thanks
Nancy
Hi Munford!
Thank you for using our theme.
You can put the following in custom.css or Enfold->Styles->QuickCSS field.
To remove spacing just on this page you can use:
.page-id-49 .template-page .entry-content-wrapper h1{
letter-spacing: 0 !important;
}
For all pages remove .page-id-49.
Cheers!
Günter
thanks!