Back to Home

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.

Not sure where to start? Try the Theme Builder.
Describe a vibe and get an AI-generated palette with a live preview.
Open Theme Builder →

Getting started

  1. Open your profile and tap Edit Profile.
  2. Scroll to Custom CSS and tap to open the editor.
  3. 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 @container queries
  • @keyframes animations and @font-face declarations
  • • Images via url() — limited to https://, relative paths, and data:image/ URIs

What's blocked

For everyone's safety, the sanitizer strips a few things automatically:

  • @import, expression(), and behavior:
  • javascript:, vbscript:, and data:text/html URLs
  • position: fixed is rewritten to absolute so 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.

#01

Dark Barbie

Hot pink + black, chunky Impact type, star decorations, 2007 MySpace energy.

#02

Varsity Sports

Navy + red + gold, stadium stripes, Impact italic, gameday banners.

#03

Hip Hop Gold

Iced-out gold gradient text on black, Old English headers, luxury glow.

#04

Victorian Gothic

Mourning veil, silver + blood red on black, Old English italic, cross marks.

#05

Vaporwave

Purple-to-pink gradient, grid floor, Courier mono, 90s mall aesthetic.

#06

Cottagecore

Linen cream + wood brown, wavy script, wildflowers, soft and handmade.

#07

Cyberpunk Neon

Night city, cyan + magenta glitch, clipped corners, terminal cursor.

#08

Grunge 90s

Sepia grain, burnt orange on dust, typewriter font, rotated tape-on-wall feel.

#09

Retro Arcade

8-bit pixels, primary colors, Press Start 2P font, insert-coin header.

#10

Minimal Mono

Pure Swiss grid, grayscale, ultralight Helvetica, editorial calm.

#11

Skater Punk

Yellow + red on black, italic Impact, skewed boxes, THRASH badges.

#12

Anime Kawaii

Pink + blue pastels, Comic Sans, dotted borders, heart badges.

#13

Western Saloon

Wanted poster sepia, double borders, Rockwell serif, star cowboy.

#14

Surfer Beach

Sky-to-sand gradient, orange + yellow, Futura italic, chill waves.

#15

Emo MySpace

Purple + hot pink on black, xXx brackets, diagonal stripes, 2006 vibes.

#16

Luxury Noir

Ink black + champagne gold, Didot serif, minimal couture.

#17

Matrix Hacker

Terminal green on black, Consolas, scanlines, root@ prompt.

#18

Pastel Dream

Cotton candy gradient, Quicksand, soft sparkles, airy and dreamy.

#19

Dark Academia

Oxblood + parchment, Baskerville italic, fleuron ornaments, old library.

#20

Disco 70s

Conic rainbow, Futura, mirror ball, Studio 54 glow.

#21

Forest Witch

Moss green + moonlight silver, Garamond italic, spellbook ambiance.

#22

Comic Book

Halftone dots, POW! bursts, Bangers font, red + yellow Kirby panels.

#23

Tropical Miami

Sunset gradient, hot pink + cyan, Futura italic, 80s Miami Vice.

#24

Space Cosmic

Deep space nebula, Orbitron, purple starfield, galactic glow.

#25

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.