Hi there, i just made this forum post: https://siteorigin.com/?post_type=thread&p=29628
I fixed the issue i was having with red colored unchangeable links, by using a custom CSS script i found posted on here by someone else, and adding a few more colorcodes. I’ll add the code at the bottom of this post, if anyone else might need it.
Now my only remaining problems are changing the quote text color, and moving header logo/categories more to the left. I would love any tips on how do do that.
Here is my temporary practice website: http://tingfinder.webfactional.com/
And here is the custom CSS script i used to fix the link color problem:
/* remove underline and change color of text links */
a:link {
text-decoration: none;
color: #33a2ff;
font-size: 100%;
}
a:visited {
text-decoration: none;
color: #33a2ff;
font-size: 100%;
}
a:hover {
text-decoration: none;
color: #33a2ff;
font-size: 100%;
}
a:active {
text-decoration: none;
color: #33a2ff;
font-size: 100%;
}
Keep in mind, i am a complete newbie, but that seemed to do the job for me.