How to use Custom Styles?

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #559
    Anonymous
    Guest

    Hi,

    How can I use custom styles under the Extend Options to apply a color for the tags h2 to h4 and also change the size of the font for the primary font?

    Thanks,

    Michel

    #1452
    admin
    Participant

    Hello Michel,

    Quote:
    color for the tags h2 to h4

    You may use the following CSS code snippet in Extend Settings to change the color of h2 to h4 heads,

    h2, h3, h4 {
    color: #7ab80e;
    }[/CODE]

    [QUOTE]change the size of the font for the primary font?[/QUOTE]

    [CODE]body {
    font-size: 18px;
    line-height: 1.5;
    }[/CODE]

    Thanks[CODE]h2, h3, h4 {
    color: #7ab80e;
    }[/CODE]

    Quote:
    change the size of the font for the primary font?

    body {
    font-size: 18px;
    line-height: 1.5;
    }[/CODE]

    Thanks[CODE]body {
    font-size: 18px;
    line-height: 1.5;
    }[/CODE]

    Thanks

    #1453
    Anonymous
    Guest

    That works great thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.