• Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

flex-wrap not working on Squarespace site

missleattak

New Coder
This code was working for the last year until it wasn't a few days ago. I hadn't changed anything on my site and I can't get it to work again. I want the products on my website to be in rows/columns of 2 while on mobile. Currently they are all pushed to the left. I can't figure out why it isn't working.

/* 2 Column Product Grid */
@media only screen and (max-width:768px)
{
.products .list-grid {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.products .grid-item {
width: 48%;
}
}
 
Hi missleattak,
You should use the </> icon to enter the code. You should ask squarespace what they changed that broke your site.
Your code should work btw.

So give us a link to the site so we can look at the entire code, unless you want to post it here and save us time.
 
I contacted squarespace and they said that since it is third party code all they can recommend is that I get rid of it.

Here is a link to my website: www.midhavenfurniture.ca/available

CSS:
/* 2 Column Product Grid */
@media only screen and (max-width:768px)
{
.products .list-grid {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.products .grid-item {
width: 48%;
}
}
 

New Threads

Buy us a coffee!

300x250
Top Bottom