i was able to fix the problem i was having by removing the
hello! i'm back again~ working on another thing, and having issues with the module userpic and hiding it or moving it, essentially. i was able to move where i want the contents of the module userpic to be displayed and how i want the module content to be displayed, but i'm still having the issue of it showing up at the center and top, with the border.
you can view the live version at
testerjournal, and the image here. as you can see, or hover over the circle at the top it still shows as if the module userpic is up there which i don't want it to do.
module coding is here, and i can't figure out how to fix this
eta: using tabula rasa, plain
.module-content .userpic {
position: relative;
left: 280px;
bottom: -65px;
border-radius: 50%;
width: 50px;
height: 50px;
border-style: solid;
}!problem i was having
hello! i'm back again~ working on another thing, and having issues with the module userpic and hiding it or moving it, essentially. i was able to move where i want the contents of the module userpic to be displayed and how i want the module content to be displayed, but i'm still having the issue of it showing up at the center and top, with the border.
you can view the live version at
module coding is here, and i can't figure out how to fix this
eta: using tabula rasa, plain
Tags:
no subject
Date: 2025-09-27 10:22 pm (UTC)I recommend doing the above because it's the sanest way to handle it, but if you're looking for a CSS solution to hide the userpic:
.module-content .userpic { display: none; }(this removes the element entirely)or maybe
.module-content .userpic { visibility: hidden; }(the element is still there but it's invisible)no subject
Date: 2025-09-27 10:27 pm (UTC).module-content .userpicand everything with it, and that gave the display that i wanted