Hi!
I'm seeming to have a hard time getting CSS to work on my profile, and just want to clear my understanding on its intended use for my profile. Is CSS actually enabled? Or is it BBcode? For example, just trying to mess around in firefox inspect and change the color of my profile with this(below) doesn't work
<head><style>
.page-body {
background-color: #1f3427 !important;
}
</head></style>
Profile CSS Question
- lorelovely
- Creatures • Trade
- Posts: 3
- Joined: October 1st, 2024, 4:44:13 am
- Gender: Kraken
- Location: Over there
Profile CSS Question
somewhere, where strawberry's in season
- froglady
- Creatures • Trade
- Posts: 143
- Joined: August 4th, 2012, 1:04:14 am
- Gender: Female
- Location: Tampa Bay, Florida
Re: Profile CSS Question
viewtopic.php?p=23623848#p23623848
There are still site code issues being worked on. Profiles are one of them. There's a list at the link above.
There are still site code issues being worked on. Profiles are one of them. There's a list at the link above.
My join date says 2012, when I made an account I promptly forgot about until August 2023, so I'm really *gasp* a newbie.
I have no phobias or disliked critters. Feel free to click anything in my keep, except the "Quests" tab. I think you'll find plenty there without those 2 or 3.
I have no phobias or disliked critters. Feel free to click anything in my keep, except the "Quests" tab. I think you'll find plenty there without those 2 or 3.
- Rosehill
- Coder
- Creatures • Trade
- Posts: 8121
- Joined: July 24th, 2009, 4:03:51 am
- Gender: Female
- Location: Northern Europe
- Contact:
Re: Profile CSS Question
As froglady pointed out, the profile CSS doesn't currently do anything. Once I get it working again, you should post plain CSS in the field on your profile, so in your case you should have:lorelovely wrote: ↑October 1st, 2024, 5:10:02 am Hi!
I'm seeming to have a hard time getting CSS to work on my profile, and just want to clear my understanding on its intended use for my profile. Is CSS actually enabled? Or is it BBcode? For example, just trying to mess around in firefox inspect and change the color of my profile with this(below) doesn't work
<head><style>
.page-body {
background-color: #1f3427 !important;
}
</head></style>
Code: Select all
.page-body {
background-color: #1f3427 !important;
}
Code: Select all
<head><style>
.page-body {
background-color: #1f3427 !important;
}
</head></style>
- lorelovely
- Creatures • Trade
- Posts: 3
- Joined: October 1st, 2024, 4:44:13 am
- Gender: Kraken
- Location: Over there
Re: Profile CSS Question
Thanks a ton for the response! I just signed up last night so wanted to be sure I was doing it properly, but its good to know it's being reviewed. Love this site and the care that's been put into it!Rosehill wrote: ↑October 1st, 2024, 9:31:24 amAs froglady pointed out, the profile CSS doesn't currently do anything. Once I get it working again, you should post plain CSS in the field on your profile, so in your case you should have:lorelovely wrote: ↑October 1st, 2024, 5:10:02 am Hi!
I'm seeming to have a hard time getting CSS to work on my profile, and just want to clear my understanding on its intended use for my profile. Is CSS actually enabled? Or is it BBcode? For example, just trying to mess around in firefox inspect and change the color of my profile with this(below) doesn't work
<head><style>
.page-body {
background-color: #1f3427 !important;
}
</head></style>
instead ofCode: Select all
.page-body { background-color: #1f3427 !important; }
Code: Select all
<head><style> .page-body { background-color: #1f3427 !important; } </head></style>
somewhere, where strawberry's in season