Comments on f2u . guilt by association All Comments Start of Thread Parent

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!