How can I adjust the width of a clickable image banner in Dawn 2.0?

I just changed the image banner so the whole thing is clickable using the link found below, but the banner is HUGE on desktop. Is there a way to make the banner stay the same ratio, but the overall width be smaller, so it is only as wide as the featured collections below it?

Dawn theme: how to make the image banner clickable (ezfycode.com)

@RicquelS - your banner is 100% width, we can reduce the width, but image may look wierd, can you please share this page link?

www.TheScarletWagon.com

Thank you. :slightly_smiling_face: I want the banner image to stay the same ratio, if possible, just maybe have some padding on the sides.

@RicquelS - please add this css to the end of your base.css file and check

@media screen and (min-width: 750px){
#Banner-template--15640643961090__16437669694cec5f40{
max-width: var(--page-width);    margin: 0 auto;    padding: 0 5rem;}

#Banner-template--15640643961090__16437669694cec5f40 img{
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 5rem;}

#Banner-template--15640643961090__16437669694cec5f40 .banner__media{background-color: initial;}

}

That is perfect! Thank you so much! :slightly_smiling_face: