Footer styling

Hi there,

The footer in the sparkling theme is right aligned and it wraps after I add some custom text to it. E.g. links to static pages on my website.

I want the footer text to be center align and not wrap after adding custom text.

Many thanks…

Hello there,

I hope you are doing well today.

Could you please provide a link to your website so that I can inspect it as your footer may be different from the demo?

Best Regards,
Support

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

#colophon nav.col-md-6 {
    display: none;
}

#colophon .copyright.col-md-6 {
    float: none;
    width: 100%;
    text-align: center;
}

Thanks @Movin :slight_smile:

You are most welcome here :slight_smile: