« Web, HTML, Tech Forum

HOW DO I EDIT MY COMMENTS COLORS??

i wana edit my comments color/background image, but i cant find any code anywhere, does anyone know how and could give me code for it?


Report Topic

2 Replies

Sort Replies:

Reply by rappa

posted

hi! I was able to color mine by using these selectors:

.comments-table td      (this selects the comment content on the right)

.comments-table td:first-child  (this selects the part on the left where the person's name/pfp is)


and then there's the counter to color which i think is just selected with .counter

you can't see the outcome on mine because I don't have any comments, but you can test how things look here! if you need more css help than that let me know 



Permalink Report Reply

Reply by ⸸delicate死尸⊹ ࣪ ˖

posted

I used this code. Just replace the word color in the code with the colors you want, hope it works


<style>


}

.heading{

background: color!important;

}

.comments-table td{

background: color!important;

}

.comments-table td:first-child{

background: color!important;


}

</style>


Permalink Report Reply