Skip to main content
Main Content

Making den transparent

Making den transparent
Posted 2022-08-27 15:01:53
Hi! I'm making my CSS, and I can't figure out how to make the den area semi-transparent and colored. it's still just opaque grey :') I bet it's simple and I'm dumb, but thanks for the help anyway!

and how do you change the name of the 'companion/mate/friend ' section and the 'leader/alpha' area? thanks so much!

folkology ⚢
#53713

Posted 2022-08-28 19:48:06
Which part are you trying to make semi-transparent? It may help to think of everything in terms of layers (like photoshop layers). You have the forest wallpaper background, then the white background (which is also broken up into sections, like the sidebar and the main panel), then each table, and each table has "layered" header/body on top, etc. So depending what you want to make semi-transparent, there are some "layers" you may have to set as completely transparent.

You can change the title of your two featured wolves by going to your den, scroll to the bottom under "Den Options." One is your Pack Leader Title, and the other one is the Featured Wolf. You can't make custom titles, you can only pick from the drop down.

fireflii
#757

Posted 2022-11-02 20:06:13
I have code for changing the name!


#lblPackLeaderTitle{
color: transparent;
}

#lblPackLeaderTitle::after{
content: "Grande Celeste";
color:white;
margin-left: -50px;
}
#lblFeaturedWolfTitle{
color: transparent;
}
#lblFeaturedWolfTitle::after{
content: "For Stud";
color:white;
margin-left: -30px;
}

Just replace "Grande Celeste" and "For Stud" with what you want and put it in a CSS file :)
Chikn
#89968

Posted 2022-11-10 17:02:27
oh my goodness THANK YOU so much

folkology ⚢
#53713

Posted 2022-11-10 20:43:10
You're welcome!
Chikn
#89968

Search Topic