Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #28084

    Hi,

    where can i control the appearance of the Headers h1 – hx ?

    z. Bsp. font size, uppercase and so on.

    Thanks in advance.

    ridcon

    #136405

    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

    #136406

    Hi ridcon,

    thanks a lot, great support as always.

    ridcon

    #136407

    I mean devin, of course.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Header h1 – h4, spezial heading’ is closed to new replies.