Hi, im looking to create a section in my pet profile with a menu bar and a box for the pages (which will display my pet overlay, then TC etc). I'm familiar with basic css but idk how to start this one. does anyone know where i can find a reference? is there a term for this type of code im trying to do?
<( )
To create the things you mentioned, you'll need HTML. To learn more about that, check out w3schools.
Also, have you checked out the threads mentioned in Useful Profiles and Graphics Threads ? They're also a good reference for getting started on this type of stuff.
sounds like you want to do something with anchor links. basically you would use css and html to create a new div where you will have your menu bar, then you would use css to place everything you want to appear where you want it to, and set them to visibility: hidden. THEN you use the :target pseudo-class to set them to visibility: visible when you click on their corresponding link. so the basic structure might look something like this:
thank you! this is very helpful, at least i know what to look at specifically. ive been playing around with the anchor links and ill try the :target class as well
<( )
you're very welcome! there are other ways of doing it but at least that's a starting point since you know what to search for.