Jump to content

2 column grid on mobile not aligning properly

Recommended Posts

Posted (edited)

Hello! I know this topic has been addressed many times but I can't find the explanations to my issue.

I have Squarespace 7.0. I added custom css for 2-column product grid. On my laptop its fine, on the mobile, the New release section is not aligning. What am I doing wrong? Text is too long?

Code used

/* Homepage products 2 columns mobile */
@media screen and (max-width:640px) 
{
div#page-650a834d556c5610652818d8 .span-3 {
    width: 48% !important;
    float: left !important;
      padding: 0px !important;
}}

Thanks.

jad-mobile.jpg

Edited by Vulkan101
missing explanations
Posted

@Vulkan101 thanks, try this custom CSS instead, you can target any of the parent rows of the column groups with this, but these are the two groups of columns I can see on your homepage:

@media (max-width:640px) {
	#yui_3_17_2_1_1698855416983_98, #yui_3_17_2_1_1698855684213_221 {
		display: flex;
		flex-wrap: wrap;
	}
}

And then if you specifically want to lock it into two columns, remove your width 50% and float left properties and add this instead:

@media (max-width:640px) {
	#yui_3_17_2_1_1698855416983_98 col, #yui_3_17_2_1_1698855684213_221 col {
		flex-basis: 50%;
	}
}

So the whole thing looks like this:

@media (max-width:640px) {
	#yui_3_17_2_1_1698855416983_98, #yui_3_17_2_1_1698855684213_221 {
		display: flex;
		flex-wrap: wrap;
	}
	#yui_3_17_2_1_1698855416983_98 col, #yui_3_17_2_1_1698855684213_221 col {
		flex-basis: 50%;
	}
}

Let me know?

Posted (edited)

@Vulkan101 Oh whoops, my bad. Typo in the selector... this should work:

@media (max-width:640px) {
	#yui_3_17_2_1_1698855416983_98, #yui_3_17_2_1_1698855684213_221 {
		display: flex;
		flex-wrap: wrap;
	}
	#yui_3_17_2_1_1698855416983_98 .col, #yui_3_17_2_1_1698855684213_221 .col {
		flex-basis: 50%;
	}
}

Remember to remove your existing float and width properties first.

Edited by SaranyaDesigns

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.