There’s an additional space in a container on mobile view that I can’t seem to get rid of.. i don’t know why the code is not resizing or fitting to page. Please help!
Store link: www.witchaven.co
Store password: foolde
There’s an additional space in a container on mobile view that I can’t seem to get rid of.. i don’t know why the code is not resizing or fitting to page. Please help!
Store link: www.witchaven.co
Store password: foolde
Hello @sleepyflow3r
Please share me page link.
The page link is https://witchaven.co/pages/meet-test
password is foolde.
Hello There,
@media screen and (max-width:749px){
.Container .container {
display: flex;
flex-wrap: wrap;
}
}
Hello @sleepyflow3r
Please add proper css in the file.
@media only screen and (max-width:749px){
.Container .container {
display: flex;
flex-wrap: wrap;
}
}
Hello There,
@media screen and (min-width:750px){
.container .Container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(375px, 0.5fr));
grid-template-rows: repeat(5, 1fr);
grid-auto-columns: 1fr 1fr;
gap: 5px 5px;
grid-auto-flow: row;
width: 70%;
height: 100%;
justify-content: center;
align-items: center;
max-width: 900px!important;
}
}
Unfortunately, that code didn’t change or update anything… any other suggestions? ![]()