Website Building » Squarespace » How Do I Edit a Mobile Breakpoint in Squarespace?

How Do I Edit a Mobile Breakpoint in Squarespace?

Last updated on December 29, 2022 @ 2:41 pm

There are two ways to edit mobile breakpoints in Squarespace. The first is to use the device emulator in the Style Editor, and the second is to use media queries in your CSS.

To use the device emulator, open the Style Editor and click on the Mobile tab. From here, you can select a device from the drop-down menu and make changes to the stylesheet specifically for that device. For example, you could change the font size or hide certain elements on mobile devices.

To use media queries, you’ll need to add CSS code to your site’s stylesheet. For example, the following code will change the font size on all screen sizes smaller than 768px:

PRO TIP: If you are not familiar with Squarespace, we recommend that you seek help from a professional before editing mobile breakpoints. Trying to edit mobile breakpoints without proper knowledge may result in your site looking broken or unresponsive on mobile devices.

@media (max-width: 768px) {
  p {
    font-size: 16px;
  }

You can also use media queries to hide certain elements on mobile devices. For example, the following code will hide an element with the ID of "sidebar":

@media (max-width: 768px) {
  #sidebar {
    display: none;
  }
}
Drew Clemente

Drew Clemente

Devops & Sysadmin engineer. I basically build infrastructure online.