[f2u] guarded's Comments


As someone who has no real coding experience beyond the easy/ultra beginner stuff (Links and text formatting for color or bold etc) is there a way to change this for custom colors? I'm doing the work myself I just need a little help figuring out what I need to put in after ripping out the bootstrap stuff.

changing to custom colors just basically involves putting style="background-color: #hexcode" or style="color: #texthexcode" everywhere. you can probably put the base text color you want at the very first div, since it will apply to all text afterwards. when you see anything with "bg-something" (like bg-success, bg-faded, etc) do background-color: #hexcode in the style. same with text colors.

however, since this is a fairly large code, i recommend starting off with this website https://safehou-se.vercel.app/color-changer this lets you input bootstrap code and change the colors. i haven't messed with it much myself though. i do know that it doesn't work 100% with this code and may require some extra tweeking, but it should give you a good starting off point

good luck!

Oh thank you very much! Both for the response and the help in my learning this stuff c: Hope you have a good day!

CONGRATS ON THE BIG 1K!!!! totally deserved! I am still working on using this one because its way more in depth than I expected LOL but its great and i love it :^)

oh wow thank you! a whole 1k, that amazing. havent been able to work on other codes too much due to school, but making this was a lot of fun hehehe. glad you like the code!

heyaa, there is any way to make the background white? 

which background? do you mean the back part surrounded by the green outline? if thats the case, you can replace the second line of code:

<div style="box-shadow: 0px 2px 6px rgba(0,0,0,0.5);" class="card card-outline-success rounded-0">

with 

<div style="box-shadow: 0px 2px 6px rgba(0,0,0,0.5); background-color:white;" class="card card-outline-success rounded-0">

if you want to make everything white, i recommend using https://safehou-se.vercel.app/color-changer . i havent used it much myself, but you should probably start with "Faded (background)"

it worked tysm!