Tagged: header
Hi,
where can i control the appearance of the Headers h1 – hx ?
z. Bsp. font size, uppercase and so on.
Thanks in advance.
ridcon
Hi ridcon,
There aren’t any theme settings for it so it needs to be done via CSS. A basic blank slate would be:
h1 {
text-transform:capitalize;
}
h2 {
text-transform:uppercase;
}
h3 {
}
h4 {
text-transform:lowercase;
}
h5 {
}
h6 {
}
You can of course change the text-transform for each as well as set font/color. You’ll probably need to use !important if you want the declaration to be forced site wide but this is the general gist of it.
Regards,
Devin
Hi ridcon,
thanks a lot, great support as always.
ridcon
I mean devin, of course.