Hello! I've been working on customizing my profile, and I'm having issues with changing the color of my font. I was able to change most of the text to black, but the About Me and Who I'd Like to Meet text is still red, and I cannot for the life of my figure out how to change the color. I was able to change the font just fine, though. I'll leave the code that I used for my font, and hopefully someone can tell me what I need to add or change to change the color of more text. Thank you!
<style>
@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap');
* {
font-family: "Cherry Bomb One", serif;
color: black;
}
</style>
Comments
Displaying 1 of 1 comments ( View all | Add Comment )
marmar!
In my tests, i used
.profile .blurbs .section h4 {
margin: 0;
color: #495146;
<style>
and that worked
It worked!! Thank you so much!!
by Pinkie; ; Report