How can I add borders to a table in Pipeline theme?

Hi,

How do I add borders to a table? When I create a table and click save, the formatting is there but there are no borders or outlines around each line of text

I am using Pipeline theme

Thank you

Hello @Courteney1111

Try this code: it will be helpful to you-

Go to the online store>Theme>Edit code>Assets>theme.css>add code in this file.

.push--large--one-sixth {
    border: 1px solid black;
    border-width: thin;
}

Sorry @oscprofessional I meant adding a border/outline around each line/row of text within a table

@Courteney1111
Hello,

.rte__table-wrapper td {
	border: 1px solid #000;
}

Add this CSS at the bottom of Online Store-> Theme->Edit code->Assets->theme.scss.liquid

Like This

@oscprofessional amazing thank you so much exactly what I was looking for