Jump to content

Need mobile version design as banner and desktop version as carousel for content in one section displaying photos. Is this possible?

Go to solution Solved by Lesum,

Recommended Posts

Hello, I am trying to make one of my sections on the desktop version a carousel and the same section in mobile version as a banner. It doesn't allow me to have the 2 versions be different designs. How do I do this? I will provide a screenshot of what I want each to look like without changing the other. Thanks!

Screenshot 2023-08-17 094256.png

Screenshot 2023-08-17 094505.png

Link to comment

@RayChavez It can be done with some custom code. 

You can create two sections, one with banner and other one with carousel. Then with custom code we can hide the banner section on desktop and carousel section on mobile. Let me know if you need help with the code. Thanks! 

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
  • Solution

@RayChavez Here's a code snippet to try:

@media only screen and (min-width: 768px) {
	/* Hide banner section on desktop */
	section[data-section-id="64dea75c9def2d79b6323630"] {
		display: none !important;
	}
}
@media only screen and (max-width: 767px) {
	section[data-section-id="64dea75c9def2d79b6323630"] {
		display: block !important;
	}
	 /* Hide carousel section on mobile */
	section[data-section-id="64dc0e4ec8650f601e7881d5"] {
		display: none !important;
	}
}

Let me know how it goes. Thanks! 

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.