Custom Profile CSS
Premium members can fully restyle their World profile with their own CSS — fonts, colors, layout, animations, the works. Make your corner of World unmistakably yours.
Getting started
- Open your profile and tap Edit Profile.
- Scroll to Custom CSS and tap to open the editor.
- Paste or write your CSS, then save.
Custom CSS is a premium feature. Free accounts can preview the editor but need to upgrade to publish styles.
How it works
Every selector you write is automatically scoped to your profile page — so your styles can't leak into the rest of the app. The root container is .profile-page-root, and bare html or body selectors are rewritten to target it.
Stylesheets are capped at 10,000 characters.
What's supported
- • Standard CSS properties, pseudo-classes, and pseudo-elements
- •
@media,@supports, and@containerqueries - •
@keyframesanimations and@font-facedeclarations - • Images via
url()— limited tohttps://, relative paths, anddata:image/URIs
What's blocked
For everyone's safety, the sanitizer strips a few things automatically:
- •
@import,expression(), andbehavior: - •
javascript:,vbscript:, anddata:text/htmlURLs - •
position: fixedis rewritten toabsoluteso styles can't overlay the rest of the app - • Inline scripts and any unrecognized at-rules
Examples
A simple recolor
/* Tint the background and round out cards */
.profile-page-root {
background: linear-gradient(180deg, #1a0b2e 0%, #0f0820 100%);
color: #f5e9ff;
}
.profile-card {
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.08);
}Custom font with an animated header
/* Custom font + animated header */
@font-face {
font-family: "MyFont";
src: url("https://example.com/font.woff2") format("woff2");
}
.profile-page-root {
font-family: "MyFont", system-ui, sans-serif;
}
@keyframes shimmer {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
.profile-header {
background: linear-gradient(90deg, #ff6b9d, #c66bff, #6b9dff);
background-size: 200% 200%;
animation: shimmer 6s ease-in-out infinite;
}Ready-made templates
Not sure where to start? Grab one of these 25 drop-in aesthetics. Hit Copy CSS, paste it into your profile's Custom CSS field, and save.
Dark Barbie
Hot pink + black, chunky Impact type, star decorations, 2007 MySpace energy.
Varsity Sports
Navy + red + gold, stadium stripes, Impact italic, gameday banners.
Hip Hop Gold
Iced-out gold gradient text on black, Old English headers, luxury glow.
Victorian Gothic
Mourning veil, silver + blood red on black, Old English italic, cross marks.
Vaporwave
Purple-to-pink gradient, grid floor, Courier mono, 90s mall aesthetic.
Cottagecore
Linen cream + wood brown, wavy script, wildflowers, soft and handmade.
Cyberpunk Neon
Night city, cyan + magenta glitch, clipped corners, terminal cursor.
Grunge 90s
Sepia grain, burnt orange on dust, typewriter font, rotated tape-on-wall feel.
Retro Arcade
8-bit pixels, primary colors, Press Start 2P font, insert-coin header.
Minimal Mono
Pure Swiss grid, grayscale, ultralight Helvetica, editorial calm.
Skater Punk
Yellow + red on black, italic Impact, skewed boxes, THRASH badges.
Anime Kawaii
Pink + blue pastels, Comic Sans, dotted borders, heart badges.
Western Saloon
Wanted poster sepia, double borders, Rockwell serif, star cowboy.
Surfer Beach
Sky-to-sand gradient, orange + yellow, Futura italic, chill waves.
Emo MySpace
Purple + hot pink on black, xXx brackets, diagonal stripes, 2006 vibes.
Luxury Noir
Ink black + champagne gold, Didot serif, minimal couture.
Matrix Hacker
Terminal green on black, Consolas, scanlines, root@ prompt.
Pastel Dream
Cotton candy gradient, Quicksand, soft sparkles, airy and dreamy.
Dark Academia
Oxblood + parchment, Baskerville italic, fleuron ornaments, old library.
Disco 70s
Conic rainbow, Futura, mirror ball, Studio 54 glow.
Forest Witch
Moss green + moonlight silver, Garamond italic, spellbook ambiance.
Comic Book
Halftone dots, POW! bursts, Bangers font, red + yellow Kirby panels.
Tropical Miami
Sunset gradient, hot pink + cyan, Futura italic, 80s Miami Vice.
Space Cosmic
Deep space nebula, Orbitron, purple starfield, galactic glow.
Zine Punk
Photocopy cream + red + black, Courier cutouts, taped-down riot grrrl zine.
Questions or stuck?
Drop us a line at support@worldcommunitysocial.com and we'll help you dial in your design.