Copyright line is divided into multiple lines

Topic summary

A user encountered an issue where their store’s copyright text in the footer was breaking across multiple lines instead of displaying horizontally on one line. They were using the Elle theme.

Solution Provided:

  • Add custom CSS code to the theme’s custom CSS section
  • Navigate to: Customize → Theme Settings → Custom CSS
  • The CSS uses flexbox properties (display: flex, justify-content: center, gap: 3px) on the .copyright__content > h4 selector

Outcome:

  • The solution successfully resolved the issue
  • The user confirmed it worked and thanked the helper
Summarized with AI on November 13. AI used: claude-sonnet-4-5-20250929.

Hi!

My store copyright line in the footer section is divided into multiple lines. I want to make the whole content fit horizontally into one line.

Is there a way to do it?

I am using Ella theme.

Here is the link to my store:

https://gloriamodis.com/

1 Like

Hello @TH7 ,

welcome to the shopify community,

Please paste given below code in your css file. navigate to customize , and find theme setting icon on left and then navigate to custom css

.copyright__content > h4 {
    display: flex;
    justify-content: center;
    gap: 3px;
}

if still find difuculty then find me from my signature i will be happy to help you.

It worked. Thank you very much.

1 Like

its okay, feel free to reached out. i will be happy to help you.