How can I add a border and center my footer disclaimer in Dawn 9.0?

I would like to add a border around my disclaimer in the footer and center the text. Is there an easy way to do this?

I am using Dawn 9.0 and here is my website: https://www.labratsupplements.com/

@curtsaczalski1 - add this css to the very end of your base.css file and check

.footer__content-bottom-wrapper{justify-content: center;}

Hi @curtsaczalski1 ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store → Theme → Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before :


Hope my answer will help you.

Best regards,

Victor | PageFly

Hi @curtsaczalski1 ,

Please go to Actions > Edit code > Assets > section-footer.css file and paste this at the bottom of the file:

.footer-block__details-content.rte {
	box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground),var(--inputs-border-opacity));
    padding: 20px;
    text-align: center;
}
@media screen and (min-width: 750px) {
	.footer-block__details-content.rte {
		margin-right: 30px;
	}
}

it will show like this