How can I adjust page margins and unbold text in policy pages?

Hi!

I would like to adjust the side margins on my “DO NOT SELL OR SHARE MY PERSONAL INFORMATION” page to match the rest of the policy pages.

Also how do I unbold the bottom section of my “DO NOT SELL OR SHARE MY PERSONAL INFORMATION”? This text is not in my pages so I am unable to edit it directly.

https://kindred-haus.com/ PW: KHaus2023

Hi @kindred-haus , go to your base.css and add the following code :

@media (min-width:990px){

section#shopify-section-template--21383409205532__main .page-width--narrow {
    max-width: 90rem !important;
    
}

}

Hello @kindred-haus
can you share page URL?

Thank you so much, this worked! Do you happen to know how I can unbold the bottom text of that page?

1 Like

@kindred-haus , Add the following code :

section#shopify-section-template--21383409205532__main .page-width--narrow strong {
    font-weight: 100 !important;
    
}

You’re amazing, once again thank you so much!

1 Like