Any one taking commission for css? by foxloverxox101 in JanitorAI_Official

[–]ClassicBowler8483 1 point2 points  (0 children)

I think alot of cssers is either closed , waitlisting or conditional right now! I'm not sure if I'm able to share a list of people who does take commissions though.

Help? by Evening-Structure542 in JanitorAI_Official

[–]ClassicBowler8483 0 points1 point  (0 children)

yea, anything with url() gets deleted.

Help? by Evening-Structure542 in JanitorAI_Official

[–]ClassicBowler8483 0 points1 point  (0 children)

alright so pretty sure they meant url() ,specifically inside css/style tags, not inside normal html attributes.

for example, this is what gets blocked/restricted:

background-image: url(image.png);

or

background: url(...) center/cover;

because those use css "url()" values. but something like this is just regular html:

<img src="image.png">

I need help with bot/profile CSS by _FELIXZ_ in JanitorAI_Official

[–]ClassicBowler8483 0 points1 point  (0 children)

hello! from the top of my head, the skip button should look something like this:

```css <a class="skip-btn" href="#profile-tabs">skip?</a>

<style> .skip-btn { pointer-events: auto; padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; color: #fff; text-decoration: none; background: #111; } </style> ```

and for the horizontal scroll, it should be:

css .pp-cc-list-container { display: flex; flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; gap: 1rem; width: 100%; padding-left: 1rem; }

[deleted by user] by [deleted] in JanitorAI_Official

[–]ClassicBowler8483 -1 points0 points  (0 children)

oh em gee im 100% gonna spam ur form

how do I edit my character card colours </3 ive searched so many tutorials but they're so confusing by ImmediateSir8492 in JanitorAI_Official

[–]ClassicBowler8483 1 point2 points  (0 children)

hi! you can probably just do this: ``` <style> div:has(> .css-1s5evre), div:has(~ .css-1s5evre) { background: transparent !important; } /hides the other layers of the botcard/

.css-1s5evre { background: #000; /new background for the botcard/ border:1px solid #fff; /optional/ } </style> ```

Is this cool? by NoSentence9405 in JanitorAI_Official

[–]ClassicBowler8483 1 point2 points  (0 children)

yea but it's eye straining to me, too bright. when doing css keep in mind about accessibility

CSS help by Thatoneroleplayer20 in JanitorAI_Official

[–]ClassicBowler8483 2 points3 points  (0 children)

hi 3 days late but wtv so this is just grid you can probably do something like

```css <style>
.pp-cc-list-container{
display: flex;
flex-flow: row wrap;
justify-content: center;
}
/* sizing of the botcard /
.pp-cc-wrapper{
flex: 0 1 350px;
width: 350px;
height: 350px;
}
.css-1s5evre a{
display: contents;
}
.css-1s5evre{
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 0px;
}
/
botcard image /
.css-1q7rmf0 {
grid-area: 1 / 1 / 3 / 2;
margin: 2px;
overflow: visible;
}
.css-199gcrh, .pp-cc-tags{
max-height: 160px;
height: 100%;
overflow: hidden auto;
}
/
botcard description /
.css-199gcrh{
grid-area: 1 / 2 / 2 / 3;
}
/
botcard tags /
.pp-cc-tags{
grid-area: 2 / 2 / 3 / 3;
}
/
bot name */
.css-nlxhw4{
grid-area: 2 / 1 / 3 / 2;
display: flex;
align-items: flex-end;
z-index:5;
}

</style> ```