Image Banner Size - Dawn theme

Image Banner Size - Dawn theme

bryan76
Trailblazer
253 7 49

We noticed that on large screens the Image Banner is Full Width but the rest of the site is more narrow. maybe it is because it is not following the rest of the site's Rich Text Editor Configuration. Not sure.

 

has anyone had this issue and fixed it?

(using Dawn Theme)

 

Thanks!

Reply 1 (1)

bryan76
Trailblazer
253 7 49

update:  I have code in the Custom CSS to make the two images responsive.  This is effecting the width.  The code is:

 

.banner__media:first-child {
width: 100%;
}
.banner__media + .banner__media {
display: none !important;
}
@media screen and (max-width: 749px) {
.banner__media:first-child {
display: none;
}
.banner__media + .banner__media {
width: 100%;
display: block !important;
}
.banner__media + .banner__media {
padding-bottom: 70% !important;
padding-left: 60% !important;
}
}