Hi,
website url: https://thesnoozy.com/
My banner size is perfect on the desktop version, but I would like to change the size for the mobile version. This is how it currently looks on the mobile version.
Mobile (Landscape Mode): I would like for the image to fill the whole space, just like on desktop.
Mobile (Portrait mode): I Would like the image banner to be larger on the vertical, so that the button comes below the 30%, like the picture I posted below.
you would need a expert to built it.
my guy just give me the code, stop trying to just sell yourself for small stuff. I’ll wait for a reasonable person to just answer the question.
Hello @GeorgeRizos ,
Try below code :
@media screen and (max-width: 767px) {
.banner__content {
height: 300px; /* adjust this value as needed */
}
.banner__box {
position: absolute;
bottom: 30%; /* adjust this value as needed */
left: 50%;
transform: translateX(-50%);
text-align: center;
}
}
I tested it on my browser and this is how it looks after applying CSS :
Hope it helps. Let me know if need further assistance.