I currently have it set up where a certain group has a small image that appears as sort of a signature in every post. I want to expand this to a couple people but I don’t really want to have to make individual groups for everyone (they won’t have the same one so I can’t just make a group for the few of them).
I’m not great with CSS (I can use it and sometimes tinker around a bit but that’s my limit). Right now I’m using
.topic-post.group-Owner .topic-body .cooked::after {
background-image: url("https://picture.image");
background-repeat: no-repeat;
background-size: 160px 80px; /*change these values according to the image size*/
width: 160px; /*change this value according to the image size*/
height: 80px; /*change this value according to the image size*/
display: block;
float: right;
content: "";
}
Which works fine for the group. I’ve tried swapping .username-User and that doesn’t work.