• Hi there,

    1. Coding question here – On this website – https://simonebowman.com/ – I want to have the Title for the Image Slider all on one line – so the words “Compassionate. Intuitive. Responsive” on the same line. I think I just need to make the box wider…I just don’t know how to! I’d appreciate if someone could tell me what I should add to the CSS for it to work.

    and

    2. On 2 pages (home & resources) the slider image has a small blue bar at the bottom of the image. How do I remove that?

    Thanks, in advance, if anyone can help with this. ??

Viewing 1 replies (of 1 total)
  • You should overwrite the 40% max-width for the entry-container class.

    #featured-slider .entry-container {
        top: 50%;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        position: absolute;
        left: 5%;
        max-width: 40%;
    }

    Copy this piece of code to the CSS Editor after the change.

    I will look into your second question too, because I also want to change the standard slider appearance. I’ll let you know.

Viewing 1 replies (of 1 total)
  • The topic ‘Slider – Image Title +’ is closed to new replies.