Glad I could help.
I did that by linking to my site's style sheet in my template. In the head of my template there's a line that reads
HTML Code:
<link href="http://www.flat-stomach-exercises.com/support-files/style.css" rel="stylesheet" type="text/css" />
This tells the browser to use my site's stylesheet for my fonts, colors, etc.
Are you using SBI!'s block builder? If so you need to email support and find out what that link is. I'm not sure how to get that from SBI! if you're using the block by block builder. Not even sure if you can to be honest.
If you don't have a style sheet or don't want to bother figuring out what your link is, the other option is to use an internal style sheet and declare the colors right in the template. So you'd add this code in the head of your Master template:
HTML Code:
<style type="text/css">
a:link {
COLOR: #0000FF;
} </style>
Change 0000FF to whatever color you want.