• Resolved milan15

    (@milan15)


    Hello,

    I want to change te blue color of the main area on my homepage. I tryed some things in the CSS stylesheet but I am just not familiar with CSS.

    This is my site: https://happyharvestapp.byethost17.com/
    I am using the theme: Figero, InkThemes

    Can someone tell me if this is possible and how i can change it.

    Thanks in advange.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Have you tried a CSS forum?
    https://csscreator.com/forum

    Hi Milan,

    In the style.css file on line 420 is where the style is been called as follows

    .second-header {
        background: url("images/sliderbg-blue.png") repeat-y scroll center center #082C58;
        overflow: hidden;
    }

    The Background element is what controls the color of the background at the minute it is the image slider-blue.png that is casting the blue gradient background. To change the color just replace the background too a hex code ie if you wanted it black you would need to replace

    background: url(“images/sliderbg-blue.png”) repeat-y scroll center center #082C58;

    with

    background: #000;

    As #000 is the hex code for black. alternatively to play around with the site and change things without mking definate alts try downloading Firebug for Firefox.

    HTH
    Cheers
    J

    Thread Starter milan15

    (@milan15)

    Hello J,

    Thank you very mutch for the explanation! I see wat you are doing, and I think it will help me a lot.

    I will look up some CSS explanation sites for further changes

    Thanks a lot (again ;-))

    Milan.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change template color (Figero, InkThemes)’ is closed to new replies.