Haha, tough guy with a keyboard
And you have all those guys because you’re NOT afraid, right? Go to bed, son.
You’re a child acting like a tough guy with a keyboard. What a kook ![]()
So you’ve been threatening a child….
Pretty much. You go on the internet and talk trash to strangers. You’re a child who definitely needs to be taught a life lesson. But I’m sure you’re REAL polite in person, that’s what makes you a kook.
It’s not a dropshipping business, Einstein. Again, I never asked for you help. You’re a child who’s up way past his bedtime. Now go act like a tough guy somewhere else, kook!
Haha, what a kook! You’ll go online and disrespect a novice for not knowing how to do something you can’t even do yourself. And FYI, an actual adult with knowledge and social skills hooked me up with some code and now it works perfect. You’re a child!
Hi there! ![]()
You explained it perfectly — you want the main content area centered on desktop with light-gray background color filling the left and right sides (like margins), similar to how many modern stores look.
You can achieve this with a simple CSS update. Here’s how:
Steps to add background color to desktop margins
Go to:
Online Store → Themes → Customize
At the bottom left click:
Theme settings → Custom CSS
(Or if unavailable: Edit Code → base.css)
Add this CSS:
@media (min-width: 1024px) {
body {
background-color: #f2f2f2; /\* Light gray background \*/
}
.main-content,
.page-width,
.t4s-container {
background-color: #ffffff; /\* Keep main content white \*/
}
}
What this does:
Makes margin area a light gray on desktop only
Keeps the main content area centered & white
No changes on mobile (since mobile is full width)
If you want a slightly darker or lighter gray, you can adjust the #f2f2f2 color code.
If you’d like, you can share your store link and I can fine-tune the exact containers your theme uses — every theme has slightly different class names (Kalles, Dawn, Prestige, etc.).
Hope this helps — and welcome to Shopify! ![]()
![]()