Define Maximum Width of Images on Desktop and Mobile

PHOTO EMBED

Wed Nov 24 2021 20:19:33 GMT+0000 (Coordinated Universal Time)

Saved by @seventhandgray #squarespace #scss #images

//If you wish to apply this on both desktop and mobile
#blockID {
  max-width:150px;
  margin:auto;
}

//If you wish to apply this on mobile only
@media screen and (max-width:767px) {

#blockID {
  max-width:150px;
  margin:auto;
}

}
content_copyCOPY