Centering the title in the middle of page and coloring a button.

Topic summary

A Shopify store owner with no coding experience needs help with two styling issues:

Initial Request (Resolved):

  • Center a title in the middle of the page
  • Change a button color to white
  • Their attempted CSS code didn’t work

Solution Provided:
A helper provided custom CSS code to be added to the theme.liquid file before the </body> tag, which successfully:

  • Centers the multicolumn title using justify-content: center
  • Styles the button background color (#dcceef)
  • Removes button box-shadow

New Issue (Ongoing):
After resolving the first problem, the user discovered their info pages are using a white color scheme but wants to change it to a dark scheme. They’re unsure how to proceed since there’s no visible button for scheme selection in their interface.

The discussion includes screenshots showing the issues and remains open as the user seeks additional guidance on the color scheme problem.

Summarized with AI on November 5. AI used: claude-sonnet-4-5-20250929.

Hi there, i have no clue about coding, and I hope to find help here. As I mentioned, I need to center the title in the middle of the page and color the button white. I tried this code, but it didn’t work, and the button’s color should be #dcceef.

h2 {

text-align: center;

}

Hope to find some help here :heart:

Hello @AlexandruMihai

would you like to share your store URL and password if any please.
so i can check and provide you possible solution for your question.

yes, store link: https://063ce1-22.myshopify.com/

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.multicolumn .title-wrapper-with-link { justify-content: center !important; } .multicolumn .button { background: #dcceef !important; } .multicolumn .button::after, .multicolumn .button::before { box-shadow: unset !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Thank you so much sir, problem solved. But now i found one more thing :smiley: As you can see, white color scheme is selected for all my info pages, but i don t know how can i change this scheme to dark one, because i don t have any button for scheme selection, can you give me an advice?