I was wondering if it was possible to align the header text to the left of the logo when on widescreen? The text seems to be pushed to the left when I extend the window size. Picture below
Website: www.ecogarby.com
Pass: aaa
I was wondering if it was possible to align the header text to the left of the logo when on widescreen? The text seems to be pushed to the left when I extend the window size. Picture below
Website: www.ecogarby.com
Pass: aaa
Hello There,
.section.is-width-wide .container .caption {
max-width: 1200px;
width: 90%;
margin: 0 auto;
padding-left: calc(20px / 2);
}
.image-with-text-overlay__banner.columns.one-whole.image-crop-none {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.section.is-width-wide .container .caption .caption-content.text-align-left {
padding: 1rem .75rem;
}
.image-element__wrap {}
.image-with-text-overlay__banner.columns.one-whole.image-crop-none .image-element__wrap {
width: 100%;
}
@ZestardTech Thank you so much!!