Comments on PinkyDoggy All Comments

hi! i have a coding question if u dont mind, how did you make the colours match with the toyhouse site theme like how you did with your profile code ?

Great question!

So the Toyhouse theme colors is what we call "bootstrap colors". Normally, you would determine an element's color in the "style" but for bootstrap colors you would do it in "class". For example:

Custom Color:

<div class="col-md-12" style="background-color: #FF0000;"> Hello! </div>

Hello!


Bootstrap Color:

<div class="col-md-12 bg-primary"> Hello! </div>

Hello!


Bootstraps have their own whole command names so I'll give you these two recourses to help!:
https://toyhou.se/7850218.bootstrap-color-combos
https://toyhou.se/13182985.coder-resources/14570556.bootstrap-components