« Web, HTML, Tech Forum

How do I change the color of specific text?

Hello all! How do I change the text for my likes "General, movies..." etc? Also how can I identify what parts I'm editing in the future? I'm brand new to working in CSS and I have almost no idea what I'm doing. lol

Here is a Link to an image of what I'm talking about, I've got the part I want to edit highlighted.


Report Topic

1 Reply

Reply by Ivan

posted
updated

Hi, try this:


<style>
.details-table tr td:first-of-type p {
    color: <insert color code/name here>;
}
</style>


Report Reply