Make the heading area longer on slideshow- Dawn

Hi All!

I would like to make the heading area longer on my slider so that my heading can all be on one line- see examples below. Any suggestion on how to fix it?

https://ebony-design.myshopify.com/

Password: dawlaw

@Bird_on_a_Wire

Remove above css as shown in screenshot that’s

.banner__content {
    padding: 0;
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

Replace above css with the below css:

.banner__content {
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 2;
}

Throughout the above process your heading area become larger

1 Like