Comments on f2u . guilt by association All Comments

hi sorry another question - in circlejourney everything looks perfect but on my toyhou.se page it's removed the bio text? I dont know what happened

hm, i can't seem to find a reason why that'd happen just from looking at your page - toyhouse seems to be treating it as if there were never text there at all. could you send me the code you're using in circlejourney so i could better troubleshoot?

Yeah! Here you go: https://pastebin.com/AKyDaFdt thank you so much :D

looks like the style attribute just got separated from its tag! what you have, right under the section labeled "description", is this:

<p class="m-0" style="color:#E9D3D7"> <style="max-height: 40%; overflow-y:auto;">

and it's that separate attribute (the "style=" and its following attributes) with no actual tag (like the p before it) that's confusing the code, what you'll want is those attributes to not be separated, so what you'd have instead would look like this:

<p class="m-0" style="color:#E9D3D7; max-height: 40%; overflow-y:auto;">

hope that helps ! :> that should fix the issue, but lmk if you have any more trouble with it

that fixed it! tysm!