Shape 5

Joomla Templates => No1 Shopping - Club => : topazmedia July 18, 2014, 05:21:26 AM



: Change Heading 1, etc, colours
: topazmedia July 18, 2014, 05:21:26 AM
Hi there

I have been going through lots of CSS files but can't seem to find where you can edit the default colour of different styles? E.g. Heading 1, Heading 2, etc.?

Best regards

TIm


: Re: Change Heading 1, etc, colours
: mikenicoll July 19, 2014, 09:49:12 PM
Hello,

These values are in the Template.CSS file at the top:

:
h1 {
    font-size: 2em;
    font-weight: normal;
}
h2 {
    font-size: 1.8em;
    font-weight: normal;
}
h3 {
    font-size: 1.4em;
    font-weight: normal;
}
h4 {
    font-size: 1.2em;
    font-weight: normal;
}
h5 {
    font-size: 1em;
    font-weight: normal;
}

You can add any styling to those areas as needed. You might also need to use !important if any elements on your site are also using specific header styling.

-Mike