Jump to content

Centering "Services" Blocks

Recommended Posts

Hello forum,

I am trying to figure out how I can center the services blocks in a pre-made layout. I have six total services listed. The top row is four (I don't like how big they become when changing to three per row), and I would like the bottom two to be centered under the four. They automatically align to the left and there is no built in way to change that. Any code to help this problem would be much appreciated. The website link is www.orbital.ink/services

Thanks!

Screen Shot 2023-09-12 at 2.00.45 PM.png

Link to comment

@ptadams615 You can try adding this code snippet under Custom CSS panel:

@media only screen and (min-width:768px) {
	section[data-section-id="65009c332f517a728f7b09b0"] ul.user-items-list-item-container.user-items-list-simple li:nth-child(5) { 
		grid-column: 2 !important;
	}
}
Edited by Lesum

If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. 

Sam
Web Developer & Digital Designer

 Did you find my contribution helpful? Buy me a coffee?

Link to comment

@ptadams615 To center the row of three, you can add this code snippet:

@media only screen and (min-width:1100px) {
	section[data-section-id="65009c332f517a728f7b09b0"] ul.user-items-list-item-container.user-items-list-simple li:nth-child(n+5) {
		position:relative;
		left: 50% !important;
	} 
}
@media only screen and (min-width:768px) and (max-width:1099px) {
	section[data-section-id="65009c332f517a728f7b09b0"] ul.user-items-list-item-container.user-items-list-simple li:last-child {
		grid-column-start: 2 !important;
	}
}
@media only screen and (min-width:576px) and (max-width:767px) {
	section[data-section-id="65009c332f517a728f7b09b0"] ul.user-items-list-item-container.user-items-list-simple li:last-child {
		position: relative;
		left: 50% !important;
	}
}

If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. 

Sam
Web Developer & Digital Designer

 Did you find my contribution helpful? Buy me a coffee?

Link to comment

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.