Theo/Atrix
anarchythorn
it/thon. @anarchythorn on tumblr; using this as an ask service instead so things can be better organized.
Say some silly words and get some silly words back <3
rgrgrhrhghhghhh tghe oc brainrot is so fucking real rn ohhhh my god........... anyways haha https://bundlrs.cc/vampirebites https://bundlrs.cc/kard hahaha totally not plugging my. ocs.s (make sure you have autoplay audio enabled on bundlrs for the full experience, it's not bad stuff /gen Unless you count the quality of the one in /vampirebites then yes its bad bandlab hated me that day)
ELLO CHAT IM PUMPED TO BE HERE WOOO might make a little intro thing or a template for that if anyone wants :3 for now the basics r: my name is Bane, I'm the host of a system, I've got a SHIT TON of kins and even more pronouns lmaooo šš drop your kins in response to this if you want ill do my full list when i format my intro
Hey rentry users if you know basic html and css you should go check out bundlrs.cc it's like rentry but with SOOO much more customizability bc you can add your own code and even change how the site itself looks on your url its so cool I prommy
hey chat since I can't figure out how to edit posts, you get a google site for a pinned instead: https://sites.google.com/view/theoneo/home
this will be updated as I add tags so :3
update: oh wait i got it now uhhh. i dunmno fuick it we still using google sites i put effort into it
looked at your profile and DAMN I like what you've done with it!! :O I'll just paste the code I'm using here as it is:
#page { background: url(https://file.garden/ZnYI7nWZT2iPJ-jX/spaceanim.gif)!important; }
hope that helps!! :D if that's exactly what you put in and it still doesn't work then I have no clue sorry </3 still getting the hang of htmlcss myself jklgdfgk
this doesn't work for all text but I'm sure you could edit the selectors to see if you can get it to work
@font-face { /* importing font; I typically download from DaFont and store on file.garden */ src: url(linktofontfilehere); font-family: FontNameHere /* you can use literally anything for this, just keep in mind this is how you'll refer to it. if you want to use spaces you'll need quotes around it too, but I personally find it easier to just mash it into one word / / optionally, you can add font-weight or font-style for variations of the same font if you have multiple files, but it isn't required. I'm p sure most browsers can make makeshift italics, but bolding isn't as widely covered. You'll want to get a font that has separate files for that if you rely heavily on markdown and such */ }
p { font-family: FontNameHere!important; /* the !important thing overrides the default font-family thing given to p elements by the site */ }
/* formatting this so you can just copy paste without having to sort through to delete me yapping _ anyways!! */
#page { background: url(LinkToImageHere.png)!important; } /* the div used for your bg doesn't have a class from what I could find, so you have to use the id (page) and the id selector for this. also do not remove the !important thing!! in the default css the background already has a set style, so you need to override it and using this method is the best way I know how. You may also be able to just put url(link) in the box in settings without actually messing with the css, but I haven't tested images with variables (which is what the default css for this uses) so I went with re-writing the css entirely via !important */