• Hi!

    It seems I can only change in customizer title and text color.

    When I change colors in style.css nothing happens. I thought, maybe my child css is overruled by parent css. So I changed colors (h2-h6 and thing as .entry-content) in the parent style.css. But again, any color on the site stays #000; I set in parent theme everything back to default.

    I love Llorix One Lite theme, but it would be nice to customize it further. This is my website: bloggendeondernemers.nl

    Anybody who can help? Thanks in advance!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Have you tried giving !important after the color name?

    Eg

    if class name is .dark-text then css would be

    .dark-text{
    color:red !important;
    }

    Regards
    Divdeep Singh

    I have a similar problem. I am using llorix one lite (https://atmb-automation.de/) and tried to change the default font in style.css:

    body {
    font-family: ‘Open Sans’, Helvetica Neue, Sans-serif;
    font-size: 16px;
    line-height: 28px;

    /* My change:
    font-size: 12px;!important
    line-height: 21px;!important*/

    font-weight: 400;
    color: #313131;
    text-align: left;
    overflow-x: hidden !important;
    margin: auto !important;
    }

    The font remains unchanged.

    How can I get the default font set to 12px?

    Hi,

    i have seen your change that you are aadding semi-colon after 12px; don’t do that instead add semi-colon after !important so your code will be

    font-size: 12px !important;
    line-height: 21px !important;

    Thanks

    Hi divdeepsingh1,

    Thanks for the hint. It was very helpful.

    Hi,

    Glad to know that it helped you

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How can I change fonts h1-h6’ is closed to new replies.