Hi there, is there a custom CSS where I am able to have 4 columns in my footer? This might be possible if the current 3 columns aren’t so wide. I would also like to add “custom text” where it is highlighted in yellow. Thank you in advance.
@Chuckachucka adding a fourth column would need adjusting the code of your footer. As for adding text where you highlighted, you can try with the following Custom CSS
.footer-block__heading::after {
content: 'Custom Text';
display: block;
}
Adjust Custom Text as needed.
