My bf has 15 years of IT and coding experience yet can't figure out how to do the most simple profiles here. It took him 2 hours to look up all the individual divs just to literally get a gif and a background up on my profile, it still doesn't look like I want it to.
So what's the secret? How do all these peeps on Subeta know all this crazy shit about hover drops and the little effect that hides your info behind the gif or profile image until you hover over it? Why does everyone else know how to do this?
p.s. how do I get a profile that's as simple and beautiful as 's?
Like seriously yo, is there like, a master list of divs he can access? For anyone that can help me, I thank you bunches.
Also, does Subeta fully support CSS 3?
i think it's just a lot of playing around, at some point things just kinda click sooner or later. i recall there was a master list, but it's much easier to right click (on literally any element) -> inspect, that'll open up the browser console and bring you to the element you targeted.
for example, here's what shows up when i right click on your textbox and inspect it:

it shows you pretty much everything you need to know to style the css! you can play around in the bottom right box and it'll make changes to it on the spot. i think pretty much every browser supports css3 now.
edit: the showing/hiding upon hover is usually controlled by the "opacity" property. so for example, if you want to hide your textbox, you'd set the opacity to 0. edit edit: since your background sits a few levels above the .textbox (on ), you'd make the changes on that ID. {opacity: 0;}
and then to make it pop up, you add in another line that changes the opacity to 1. :hover {opacity: 1;}
and if you want the fade animation (you can google "transition css" for more info): , :hover {transition: all 0.5s ease;}
so your code would look like this:
<style> {opacity: 0;} :hover {opacity: 1;} , :hover {transition: all 0.5s ease;}</style>very last and very final edit... hopefully: 's pet, Character is also a good resource especially since it was made for pet profiles on subeta! ...which is still a bit different than /user/ profiles, but the basis for understanding is very much the same.
uhhh i know there is a full list for pet profile divs, but user profiles are another ball game (aka they frickin suck)
for senpai's profile... they only have the comment box showing (and the background of the comment box is a gif)
[edit] this may or may not be helpful idk
EDIT again okay i lied for senpai that is not at all what they did but LMAO that's how i would've done it. (but then again i don't mind messing with gifs in photoshop)