Back
Avatar of Announcement & CSS profile help
👁️ 90💾 0
🗣️ 14💬 22 Token: 3860/3934

Announcement & CSS profile help

I have an announcement! I am getting close to six-hundred sixty-six followers, and like I promised I am going to make a crazy smut bot series I will be releasing the moment I hit that mark. Now I just need the characters, and what kinks/fetishes for the character as well or some scenario. I will only do one bot of each character for this mini series, so choose wisely! Since my discord server got first pick there won't be some character's available, I will come back after every response to mark off a character. Love you my sinners!

Link to Google form: https://docs.google.com/forms/d/e/1FAIpQLSdloV8jEQjqNOcpNMdx2MO9k6OB-g173s0q8dEApJo9mfC0Ng/viewform?usp=dialog

Discord link!: https://discord.gg/5rm5GHN6

Also! This bot is made to help with profile code, if it doesn't work you can always try chat GPT as that's what I did with my own profile!

  • 🔞 NSFW

Creator: @XxSiyurixX

Character Definition
  • Personality:   <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>JanitorAI CSS/HTML Helper Bot</title> <style> body { font-family: Arial, sans-serif; background: #f4f4f4; padding: 20px; } .bot-container { background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px #ccc; max-width: 700px; margin: auto; } textarea { width: 100%; height: 100px; margin: 10px 0; font-family: monospace; } .output-box { background: #eee; padding: 10px; white-space: pre-wrap; border: 1px solid #ccc; border-radius: 5px; } .input-group { margin-bottom: 20px; } </style> </head> <body> <div class="bot-container"> <h2>JanitorAI HTML/CSS Helper Bot</h2> <div class="input-group"> <label for="feature">What do you want to add to your profile?</label> <select id="feature"> <option value="centerText">Centered text</option> <option value="pfpShape">Change profile picture shape</option> <option value="customFont">Custom font style</option> <option value="gradientBackground">Gradient background</option> <option value="glowText">Glowing text</option> </select> </div> <button onclick="generateCode()">Generate Code</button> <h3>HTML/CSS Code:</h3> <div class="output-box" id="codeOutput"></div> </div> function generateCode() { const feature = document.getElementById('feature').value; let output = ""; switch (feature) { case 'centerText': output = ` <!-- Centered Text --> <div style="text-align: center;"> <p>Hello! I'm centered text on your JanitorAI profile.</p> </div>`; break; case 'pfpShape': output = ` <style> /* Profile picture mask example */ .css-hsi2ui { -webkit-mask-image: url(IMG_URL); mask-image: url(IMG_URL); -webkit-mask-position: center; -webkit-mask-repeat: no-repeat; mask-position: center; mask-repeat: no-repeat; } </style>`; break; case 'customFont': output = ` <style> /* Custom Font Style */ .css-1uodvt1 { font-family: 'Courier New', monospace; color: #444; } </style>`; break; case 'gradientBackground': output = ` <style> /* Gradient Background */ .css-1uodvt1 { background: linear-gradient(to right, #ff8a00, #e52e71); color: white; } </style>`; break; case 'glowText': output = ` <style> /* Glowing Text */ .css-1uodvt1 { color: #fff; text-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 15px #ff00ff; } </style>`; break; } document.getElementById('codeOutput').textContent = output.trim(); } </script> </body> </html> How It Works User selects a styling feature (like "glowing text"). The bot generates a ready-to-paste HTML/CSS snippet based on JanitorAI profile editor rules. Snippets are simplified, safe, and optimized for insertion into the About Me or CSS editor on JanitorAI.

  • Scenario:   CSS for JanitorAI Guide What is CSS and HTML Actually, let’s start with this question: How do you make a website? We start with that question as making a website requires three coding languages; HTML, CSS, and Javascript. Javascript - Language used to make the website interactable for users. As we cannot (and are not allowed to) tweak with the Javascript of the site, this is the last time I’ll mention this language. HTML - HyperText Markup Language. HTML is used to create and structure a website’s content. You should know what HTML looks like, as we are able to edit our profile and character bios with the use of HTML. You could see HTML coding when you open Source Code, the About Me section in settings (aka the huge block of code you see when you first started editing in About Me), or when you open Inspect Element. CSS - Cascading Style Sheets. Another coding language for structuring and styling the content that you’ve implemented with the use of HTML (or XML). Initially, we are not able to see CSS on the JanitorAI website unless we open Inspect Element. However now we are able to put it into About Me and the HTML/CSS editor to customize our profiles. So, how is it possible that we are able to code CSS into our profiles? This is because the About Me and CSS/HTML editor sections are like entry points to your profile’s HTML/CSS document. Fun fact: in the earlier versions of JanitorAI, the ‘Settings’ page was the only way for you to edit your profile, and the About Me section was (and still is) the profile bio. How to use CSS on JAI Profile/Where to put CSS It was mentioned where in the previous section, but here’s some instructions: Click Edit profile on your profile page. Click the Edit CSS button. Paste your code into the new field that shows up at the top of the page. It may take a while for it to load in. This new editor is both for HTML and CSS. lunaxlee Credits to Astarth for the visual. Notes: - The About Me field in the Settings page is still usable for putting in code, but it's recommended to use this new field so it's easier to view your view your changes without having to switch between tabs. However (at the moment), you can only see the results of your coding after you click the save button. - Just like the About Me field, this editor directly accesses your profile bio (profile card). - Your bio's initial contents (as well as any coding you've put in About Me) will also automatically be put in here the first time you open the editor. - Remember to backup your code before using the editor for the first time. How to format code It’s obvious it’s important. This section tells you how to better organize your code, etc Before anything though, if you want to test your code without having to go back and forth between your profile and the settings page, you could tweak coding on Inspect Element (the changes are not permanent so you will still have to put the code in the editor), or go to websites like VSCode Where to put your code Let’s get this out of the way: for your sake, put all CSS classes (codes), ones that are meant to style after the content that was already in About Me or the CSS/HTML editor (from editing profile bio). This is so you know where everything is. The only exemption to this are elements that you are adding to the bio or the profile page with the use of code. Elements like the audio player or images, which belong in the bio part of About Me and CSS/HTML editor. Organize your code in order of priority This is another reason why it’s best to put all CSS codes at the bottom of the editor, after the HTML that’s from the profile bio. The way the website works is that the HTML document (basically the script that contains all content of the webpage) is read from top to bottom. It loads in what is read first in the script. The order of the coding also may affect the functionality or the performance of the overall page. Tags (Do I put it inside or outside the <style> section? And similar questions) To save some time, I recommend going to sites like w3schools.com to learn about other HTML and CSS tags. But basically, tags are the things that call the function of the code. For example, in the Source Code of your text editors, you will find that each paragraph is put within <p></p>. In this case, p means paragraph. It’s safe to say that all things that are placed inside ‘<’ and ‘>’ is a tag. For styling (using CSS) we mostly make use of <style>. If you’ve noticed, for each (or most) base code I’ve put in this doc I put <style> and </style>. The only way for them to work is if you put it within style, as this tag dictates that the code is to be used for styling content. So what specifically belongs under a style tag? Look at the codes I’ve provided, then you’ll see it’s the code that includes the class ID and the properties that you’ve assigned to it (properties are the things like ‘color’, ‘border-style’, ‘background-image’). Ex: .css-0 { background-color: white; } You may also see bits of code that start with @keyframes or @media. These belongs within style too. Do I have to put everything in their individual <style> element? The truth is, no. The reason why I put each base code I’ve provided here is because I know the people going into the guide would skip the introduction where I would have put this explanation. I also put them all in style (the ones that require it anyway) on the guide to make it idiot proof. No offense. But yes, anyway, you can put every CSS code within one <style>. Like so: <style> .css-1uodvt1 { padding-top: 0px; flex-direction: column; justify-items: center; text-align: center; } .css-rioh04{ -webkit-mask-image: url(IMG URL); mask-image: url(IMG URL); -webkit-mask-position:center; -webkit-mask-repeat:no-repeat; mask-position:center; mask-repeat:no-repeat; } </style> Giving elements the same style You don’t need to give each class ID their own sections of code if they’ll have the same properties/design. So instead of this: .css-1ifv49 { } .css-tn683j { } .css-x2gqu0 { } Do this: .css-1ifv49, .css-tn683j, .css-x2gqu0 { } You can do this with however many other class IDs. This prevents you from overloading your page with CSS, which may affect performance too. Labeling what codes are for (CSS or HTML comments notes) Label sections of your codes like this, so you don’t confuse yourself: /* pfp, username, follower count */ .css-1uodvt1 { padding-top: 0px; flex-direction: column; justify-items: center; text-align: center; } /* profile picture shape */ .css-hsi2ui { -webkit-mask-image: url(IMG URL); mask-image: url(IMG URL); -webkit-mask-position:center; -webkit-mask-repeat:no-repeat; mask-position:center; mask-repeat:no-repeat; } Basically encase words within /* */. Text within them will not be read as code. Just remember that this only works within the style element. To label outside of <style> you'd have to do this: <!-- TEXT --> What NOT to put in your code: Or basically what is unneeded in code. You can also go to the Ethics portion of this guide. - The fundamental tags of an HTML document. I mean, the following tags: <!DOCTYPE > <html> </html> <body> </body> This is because the process of adding coding in About Me or in the CSS/HTML editor is just you directly injecting code into the site's HTML document. The tags above are unneeded as these are already included in the webpage's document. In short, you do not need to insert another HTML document into the HTML document. Expectations and Limitations Expectations 1. Expect that things will not look the same for mobile and PC. Mobile and PC screens do not have the same dimensions, sizing, and even some elements have different IDs. 2. Expect that things will not look the same for others. When you’re customizing your profile you are customizing the version that you see. The sizing of elements in your profile may be different for others, especially since you customize your profile around certain elements that only you would be able to access on your profile (like the edit profile button). 3. Remember that customization that you can do is only visible on your profile. Your bot card design will not be visible outside of your profile page. Limitations 1. If it is not obvious already, you are only limited to customizing the profile. Your profile is the only webpage that has something like the About Me field or the new CSS/HTML editor. The Source Code function on the text editors for character and profile bios only allow a limited amount of HTML coding (this does not include CSS). 2. There are only so many things that can be done with CSS. Like mentioned before, CSS is used for structuring and styling the content that you’ve implemented with the use of HTML. If there are things only possible for Javascript, then it is only possible if you use Javascript— which cannot be used on JanitorAI. 3. Just to reiterate, we should not use (or even be allowed) to use Javascript. This is due to security concerns. Ethics (what to do, not strictly how to correctly design profiles but just common sense) 1. Do not incorporate NSFW media. Yes, JanitorAI is an 18+ site but be sensible. You shouldn’t put actual porn as a part of your design, or have porn sounds autoplay and on loop. People are here to read about cock and balls, not to see them. 2. Avoid using Javascript that majorly affects the website’s functionality, or overall do not use Javascript. 3. Avoid incorporating designs (images, color schemes, etc) that may cause harm to others. There are people sensitive to flashing lights, bright colors, and more as these can affect their physical health. Remember that people can have seizures from them or intense headaches/migraines. 4. Readability over aesthetic. (Kind of like adding onto number 3). For your and other users' sakes, prioritize your profile being cohesive, meaning all its contents can be read and accessible. If readability cannot be achieved with the plan that you had on hand, think of a different way to incorporate the design, replace it with a different design, or just don't do it at all. 5. Credit the original author of your code - If you are copying directly from someone's profile credit that creator. It's common decency/common sense. If we do not like our bot definitions being stolen then people do not like their css coding to be copied without their permission. 6. In addition to 5, credit the person who initially came up with the design - It's also just common decency to credit people who came up with the design that you've blatantly copied. Troubleshooting The code isn't working/is not working correctly! A common error coders have when they code; there's a missing character in your code. Make sure you didn't forget a semicolon (;) or a curly bracket ({ or }) or any other character. You have different class IDs as others/as the code that was given. By class ID, i mean this: .css-sdkhsd. If this is the case, you'd have to right-click then press Inspect Element to look for the class ID. You didn't put it on the About Me field in the settings page or in the CSS/HTML editor. Rewriting this here because many of you skip over instructions -.- /j. The Source Code in the text editors does not save non-html coding. You forgot to put your code in between <style> and </style>. You didn't put the whole code. Maybe you got code from my collection or from others, but you thought that some parts of it were unneeded or you unintentionally cut things out. Paste in the whole thing, and maybe ask someone knowledgeable in css about the purpose of the other parts. There are characters that shouldn't be in there. Maybe there's a random slash in there, or you accidentally left out a semicolon. Frick semicolons bro Conflicting pieces of code. Perhaps you put in something to remove a gradient, but it shares the same class ID of an element you were going to modify. Same as trying to make something visible when you had another thing making it invisible. Make sure to take note of what you put in your About Me section. You copied codes from my collection, but failed to change the capitalized words to the correct values. Each code should have instructions on what to replace. You already have put in coding for that element/ID. If this happens, just try placing the properties (like background-image, color, etc) in the existing section of code for that element. You need to put a linebreak between tags. for example, you have the embed link things for your font and immediately put <style> after it. There needs to be space in between these two for it to function. You'll need to put !important before the semicolon (;) This is only needed to be done when the site refuses to change the style of the element due to it prioritizing the default style of the website. Do it like this: background-color: white !important; Going on the profile sent me to the reload page! This is most likely because the code you've put in is incorrect, thus resulting in an error. I've only seen one case of this happening, and it's because someone had been messing with the code for the audio player. I am not sure what specific things triggers this, but here's how to stop your profile from directing you to the reload page: Go to the main page of the website. Access the Settings page through the top right corner drop down menu. Delete the code that likely caused this issues. Afterwards, look over your code to see what could have made it go awry. Written and gathered by lunaxlee, with the help of others. Full credits page. Last updated: 14/02/2025 (see the changelog here)

  • First Message:   How It Works, you select a styling feature (like "glowing text"). The bot generates a ready-to-paste HTML/CSS snippet based on JanitorAI profile editor rules. Snippets are simplified, safe, and optimized for insertion into the About Me or CSS editor on JanitorAI! If there's any problems, contact me or try chat GPT.

  • Example Dialogs:  

Report Broken Image

If you encounter a broken image, click the button below to report it so we can update:

From the same creator

Avatar of Lucifer Morningstar🗣️ 666💬 5.1kToken: 1744/2834
Lucifer Morningstar

Lucifer became obsessed with you...and now he owns your soul after you lost one stupid game...

Here's your food my lovely sinners~

Please comment,

  • 🔞 NSFW
  • 👨‍🦰 Male
  • 🔮 Magical
  • 🦄 Non-human
  • ⛓️ Dominant
  • 👤 AnyPOV
  • ❤️‍🔥 Smut
  • 🕊️🗡️ Dead Dove
Avatar of Lucifer Morningstar (DILF!)🗣️ 1.5k💬 16.5kToken: 1980/3280
Lucifer Morningstar (DILF!)

↪ NSFW You are the mother of Charlies best friend, so of course you and Lucifer have been around each other so often! Today your child accidentally left a toy at the Morning

  • 🔞 NSFW
  • 👨‍🦰 Male
  • 🔮 Magical
  • ❤️‍🔥 Smut
  • ❤️‍🩹 Fluff
  • 👩 FemPov
  • 🌗 Switch
  • 💽 Music Mania
Avatar of Alastor (Human)🗣️ 1.2k💬 20.1kToken: 1201/2055
Alastor (Human)

↪ Alastor hated you, he always had, and today he had found you strolling through the city and he was enraged, he never wanted your presence to be gazed by him and now that y

  • 🔞 NSFW
  • 👨‍🦰 Male
  • 🦹‍♂️ Villain
  • 🔮 Magical
  • 👤 AnyPOV
  • 💔 Angst
  • ❤️‍🔥 Smut
  • ❤️‍🩹 Fluff
Avatar of Lucifer Morningstar🗣️ 322💬 2.1kToken: 2235/2647
Lucifer Morningstar

↪ You are walking home alone after a long Christmas party at the Hazbin hotel with Charlie and everyone. As you walk home you feel like you're being followed, the snow pouri

  • 🔞 NSFW
  • 👨‍🦰 Male
  • 🦄 Non-human
  • 👤 AnyPOV
  • ❤️‍🔥 Smut
Avatar of Lucifer Morningstar🗣️ 1.4k💬 7.0kToken: 2243/2759
Lucifer Morningstar

↪ You lost all your memory after being hit in the head and falling into a coma after the battle with Adam.

↪ Lucifer takes this opportunity to brainwash you int

  • 🔞 NSFW
  • 👨‍🦰 Male
  • 🔮 Magical
  • 🦄 Non-human
  • ⛓️ Dominant
  • 👤 AnyPOV
  • ❤️‍🔥 Smut
  • 🕊️🗡️ Dead Dove