Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #58800
    Dr. Sibylle
    Participant

    Hallo,

    I would like to change the Slider Content Background Color and try to do this by going to:

    “Appearance => Customize => Color Options => Slider Color Options” and then adjust the color in “Slider Content Background Color”.

    First of all, I presume that this is the correct menu?

    If I change the colour setting there f.i. in #888888, nothing happens. If I use one of the preset colour buttons below the “colour selector”, nothing happens in the text field either, but there appears a coloured strip of about 1 cm height, below the slider image frame in the newly selected colour. I have the impression that the menu is not properly functioning

    And if I’m using the wrong menu, can you please advise where I can find the correct one?

    Tank you!

    #58804
    Sakin
    Keymaster

    @Bert: Sorry, that color option have option to change the overall slider background and the slider text and link color. But it doesn’t have option to change the slider content background color. So, to change that to #888888, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #feature-slider .entry-container {
        background: #888; /* Solid Color for old Browser */
        background: rgba(136,136,136,0.7);
    }
    #58811
    Dr. Sibylle
    Participant

    Hallo Sakin,

    Impressed (again) by your prompt and competent service!

    It works, thank you.

    I see you have two rows in the CSS programming, where the colours have to be changed? I’m asking this for when I have to change the colours to f.i. #555555

    Thank you

    #58812
    Sakin
    Keymaster

    @Bert: Thanks. For 555, it will be as below:

    #feature-slider .entry-container {
        background: #555; /* Solid Color for old Browser */
        background: rgba(85,85,85,0.7);
    }
    #58813
    Dr. Sibylle
    Participant

    All clear, thanks!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to change the Slider Content Background Color’ is closed to new replies.