RP Resources

Codes + Layouts + Tutorials + More

×

Community Rules

This comm is open to anyone to post codes, layouts, resources, tutorials, and requests for help and content. Of course, we do have some rules, so please read through them before jumping in; thank you!

Treat others the way you'd like to be treated. This is not a drama comm, and we expect you guys to be awesome and stay civil. If a situation gets out of hand, please contact a mod, and leave comments intact so we can accurately handle the situation.

Please tag your posts and check out the tagging guide if you have any questions!

■ Very long posts or posts formatted with your own div styling for organization should be behind a cut to save people's f-lists.

Work safe above the cut, please!

■ If posting codes, guides, etc. absolutely do not post content that you did not make. That's stealing, and it's super uncool, bro! If you are posting expanded/edited codes made by yourself using another user's coding as well, please be sure you have their permission (You do not need direct permission if they allow edits to be re-posted in their blanket rules.)
■ Do not post tutorials/links to tutorials that show people how to steal codes from other users. Again: Stealing. Not cool.
When asking for help with something, please check the help tags (help: coding, help: graphics, help: icons, help: layouts, help: other) first to see if your question has already been posted and answered to avoid duplicates.

We do not allow game ads to be posted on this comm since there are so many communities specifically for that already; if you're pimping a game as an addition to a regular post, that's fine. (OK: You post an RP code and mention in the post, oh hey, also I'm running this game! NOT OK: Posts dedicated to game promo.)

We do allow other types of community promos if they are related to RP (icon comms, other types of resource comms, etc.) Just shoot us a comment in our dropbox beforehand and we'll let you know if it's cool to post!
×

Tagging Guide

zzz
×

Banners & Buttons





Previous | Next
[info]54326
[info]rpresources
[info]54326
[info]rpresources

No Subject

[info]54326
[info]rpresources
does anyone know if it's possible/how to create a container for all .entrybox elements to be in on s1 generators? i'm wanting to be able to set a height for said container with overflow: scroll (since more than likely x-amount of entries > defined height) but can't figure out the correct css combo to make it happen. thank you!

Comments

Sep. 24th, 2024 01:47 am (UTC)
Here you go! I also added some scrollbar CSS for you to style so that it isn't giant and blocky:

::-webkit-scrollbar-track{background:rgba(255,255,255,0.5);border-radius:10px;}
::-webkit-scrollbar{width:4px;background:transparent;}
::-webkit-scrollbar-thumb{background:#fff;border-radius:10px;}

body div[align="center"]{max-width:600px;margin:10px auto 0 auto;max-height:500px;overflow:auto;padding:0 10px 0 0;}
table[width="600"]{width:100%!important;}

body div[align="center"] holds all of the entries and table[width="600"] is each entry. We're resetting the width of the entry to fit the scrolling container and setting the width there instead, then defining a height, overflow, and righthand padding for the overall container to give it a gap between the entries and scrollbar. You can remove that padding if you don't need it; it won't break anything. 💖
Sep. 24th, 2024 01:56 am (UTC)
thank you so, so much! you are truly amazing with all the help you give and everything you make ❤️
Sep. 25th, 2024 04:48 am (UTC)
Absolutely, glad I could help! And thank you! 😭 Let me know if you have any questions about it.