« Web, HTML, Tech Forum

Changing the Font color CSS

I am trying to get the font color for everything that would default as black on the profile to white to be able to contrast with my new background but am having trouble writing the css to do so. Would love a quick hand if someone could help.


Report Topic

6 Replies

Sort Replies:

Reply by Katie

posted

<style>

h1, h2, h3, h4,h5,a, p, nav label, .section {color: white;}


h1, h2, h3, h4, h5, a, p, nav label, .section{ text-transform:lowerercase !important;
}

.online{
  color: white!important;  
}

</style>


Permalink Report Reply

Reply by DickHayden

posted

thank you, I actually saw you reply to the same question after and got it situated


Permalink Report Reply

Reply by ynriuk

posted

I changed the font color and want to use it to make some new typography

geometry dash lite


Permalink Report Reply

Reply by Travis

posted

that geometry dash lite guy is so wise



Permalink Report Reply

Reply by fnfunkin

posted
updated

I went through the same thing when customizing my profile—changing all default black text to white sounds simple but quickly turns into an fnf -level challenge with all the overlapping selectors and !important battles. You’ll probably need something like * { color: white !important; } to brute-force it, but be careful—it can mess with visibility in modals or buttons.


Permalink Report Reply