« Back to the HTML Forum

How to change text colour in different categories??

Posted by aK1.MG

posted

Forum: HTML Group

I'm super new to code , so I've just been experimenting and using code from the spacehey HTML site

I managed to change my font colour to white, to stand out from the black background. But then it changed ALL of the similar fonts to white as well, including the interests section.

this is the code I used for it,, got from another post in this forum

<style>

p, .section {color: white;}

}

</style>

So if someone could let me know how to change the Interests text to black, or change the colour/background of the table as a whole , that would be awesome!! 


Report Topic

2 Replies

Sort Replies:

Reply by heath

posted
updated

change interests section text color:

<style>

.table-section{

color: black !important;

}

</style>


change interest section background color:

<style>

.table-section td{

background-color: black !important;

}

</style>


Permalink Report Reply

Reply by aK1.MG

posted

thank you heath!!!


Permalink Report Reply