Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #152211
    wouwonline
    Participant

    Hi,
    I’ve set the color of the slider title and slider text black. But for 1 slider I want to make the text white and the title grey. is that possible in CSS?

    The arrows besides the text are shown in the text, there should be a margin I think, between the arrows and the text. how can I change that?

    See: http://www.mediatrainingophetmediapark.nl/

    #152213
    Skandha
    Participant

    @wouwonline: Yes, that is possible using CSS. Let me know on which slide you want the title and and description color to be changed.

    To keep a margin between the slider container text and the slider arrows
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #feature-slider .container {
        margin-left:40px;
    }

    You can change the margin according to your requirement.

    Let me know if this works out!
    Kind Regards,
    Skandha

    #152655
    wouwonline
    Participant

    Margin works! thanks

    I want to change color of the text and the color of the title of slide number 1.

    #152695
    Skandha
    Participant

    @wouwonline: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To change color of title in slider 1 */
    #feature-slider .cycle-slideshow .images-1 .slider-content-wrapper .entry-title a {
    	color:#123456;
    }
    /* To change the color of text in slider 1 */
    #feature-slider .cycle-slideshow .images-1 .slider-content-wrapper .entry-summary {
    	color:#800080;
    }

    You can change the color according to your choice.

    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change color and margin of slider text’ is closed to new replies.