Is there CustomCSS for getting rid of the two things I lined in red?

My browser used to see the heart just fine but then they just mess with it so I get broken images now. I don't want it fixed as in seeing the icons, I just don't want to see those two things.
Because I don't care about HA/post likes, but I care enough that I don't want to see them.
and:
Is there coding to make user posts font size stay at "default"? I don't know the size subeta uses, but I notice it when people use smaller or bigger font sizes.
thank you.
Well I'm not sure about the post like count because with all these new classes and id's introduced I'm not sure if there's anything else that uses the same ones. But removing just the heart is easy.
.icon.heart { display:none; }
I think you could also replace the broken heart with something else if you want.
As for the font sizes there's always the option of not showing the full forums, but if you still want to see people's forumsets I think this should do it.
.forum_text { font-size:11px !important; }
(I'll have to try out the forumtext thing myself, some people just use way too large/small fonts)
- Now I just see the "like count", which I can tolerate. Until there's code for it. :)
Yes, some forumsets tell me who is talking, as I'm already not using "show full HAs". -- Good. :'D
Yeah that's the problem. The selector for the whole bit would be .ui.label but as I said, I'm not sure if anything else uses the same selector.
Maybe try this instead.
.forum_topic_reply .ui.label, .icon.heart { display:none; }
- Using both coding removed it. Only using that ui.label code removes both. So it seems to work without inadvertently removing something else that I can see. :) (aside from seeing the space between the headshot HA icon and post count, but that's fine to me.)
-Edit
- Pardon the ping, but you posted in the "Post likes" asking about coding for Post likes. The code is above this post, but it also remove the "like HA". Also, sorry if you figured it out between yesterday and now.
Ahh right. That's because you're not showing the full HA's, because for me the heart is next to the HA. ^_^
- Pardon the reping, but I found someone with using a bigger text font size and the coding isn't working, I guess? Not showing full forum takes out all the little personal touches. I just have a problem with bigger than default post fonts. D;
Oh I just tested it on this thread and it worked. Didn't bother testing it more tha nthat. I guess it depends on how someone did their forumtext. ^_^;
- It would seem so. Thankfully not a lot of people are using bigger than default. It's attention grabbing, makes me re-read their forumset when it's not important to do so. Thank you, either way.