(Squarespace) Align right text in Product Page, use Full Layout

With Product Page using Full Layout, text is left aligned. Like this.

To make text right align, you can use this code to Custom CSS.

div.pdp-desc * {
    text-align: right !important;
}
nav.ProductItem-nav {
    justify-content: flex-end;
}

Result

1 Like