Learn how to add custom CSS code to your SpaceHey profile's "About Me" section. Transform your profile with unique layouts, colors, and styles!
💡 Pro Tip: Make sure to save any existing "About Me" content before adding layout code!
Go to spacehey.com and log into your account. If you don't have an account yet, create one - it's free!
Click on your profile picture or username, then click the "Edit Profile" button. This will take you to your profile settings.
Scroll down until you see the "About Me" text box. This is where you'll add your custom CSS layout code.
💡 Tip: The "About Me" section accepts HTML and CSS, which is what makes custom layouts possible!
Browse our layout collection and find a design you like. Click the "Copy Code" button to copy it to your clipboard.
The code will look something like this:
<style>
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.profile {
background-color: rgba(255, 255, 255, 0.9);
border-radius: 15px;
padding: 20px;
}
</style>
Click inside the "About Me" text box and paste your layout code. You can use:
Scroll to the bottom of the page and click the "Save Profile" button. Your new layout should now be live!
<style> and closing </style> tags.
Click on your profile to see your new custom layout in action! You may need to refresh the page (F5 or Ctrl+R) to see the changes.
💡 Pro Tip: If your layout doesn't look right, try clearing your browser cache or testing in an incognito/private window.
CSS (Cascading Style Sheets) controls how your profile looks. Here's a simple breakdown:
<style>
/* This is a comment - it doesn't affect the code */
selector {
property: value;
another-property: another-value;
}
</style>
A basic layout with a solid color background:
<style>
body {
background-color: #FFB6D9;
font-family: Arial, sans-serif;
}
.profile {
background-color: white;
border: 3px solid #FF69B4;
border-radius: 15px;
padding: 20px;
}
</style>
A more advanced layout with a gradient background:
<style>
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background-attachment: fixed;
}
.profile {
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
border-radius: 20px;
padding: 25px;
}
a {
color: #667eea;
text-decoration: none;
}
a:hover {
color: #764ba2;
text-decoration: underline;
}
</style>
Using an image as your background:
<style>
body {
background-image: url('https://your-image-url.com/image.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.profile {
background-color: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 20px;
}
</style>
Colors in CSS can be defined in several ways:
💡 Tip: Use HTML Color Codes to find hex codes for any color!
You can use Google Fonts or system fonts:
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
</style>
<style> and </style> tags are presentYou can combine multiple layout codes into one by placing all the CSS inside a single <style> tag:
<style>
/* Background styling */
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
font-family: 'Arial', sans-serif;
}
/* Profile box styling */
.profile {
background-color: rgba(255, 255, 255, 0.9);
border: 3px solid #9D4EDD;
border-radius: 15px;
padding: 20px;
}
/* Link styling */
a {
color: #FF69B4;
text-decoration: none;
}
a:hover {
color: #FFD700;
text-decoration: underline;
}
</style>
If you're stuck or need assistance, consider: