How to Change Text Color on the WordPress Blueberry Theme
- 1). Log in to the dashboard and click "Appearance" on the left-hand sidebar. Go to "Blueberry Options" and click on the color scheme you want to use. As soon as you click on a color scheme screen shot, your theme will display the new colors.
- 2). Navigate to "Editor" in the "Appearance" submenu on the left-hand side of the dashboard. Scroll down and click the "berries.css" link to open the Blueberry color schemes style sheet.
- 3). Look for a CSS comment line that includes the name of the color scheme you want to edit:
/* blackberry css */ - 4). Find the CSS selector that "selects" the type of text you want to edit and change its "color" property value to your new color:
.blueberry #headertxt h1 a:hover {
color: #fff;
}
Blueberry uses shortened versions of hexadecimal codes, but you can change the value of "color" to a full-length, six-digit hexadecimal code. You can also use color names. Click "Update File" to finish.
Source...