Susan,
This is how I fixed the invisible copyright text…
Edit footer.php and change:
php if ( of_get_option( 'copyright', '1' ) && of_get_default('copyright') ) {
echo '<div style="padding: 0em 0 2.5em 0; text-align: center;';
if ( of_get_option( 'copyright', '' ) ) {
$typography = of_get_option('copyright_typography');
} else $typography = of_get_default('copyright_typography');
echo 'font-family: ' . $typography['face'] . '; font-size:' . $typography['size'] . '; font-style: ' . $typography['style'] . '; color:'.$typography['color'] . ';">';
echo of_get_option( 'copyright_text', of_get_default('copyright_text') ); echo '</div>';
} ?>
to
php if ( of_get_option( 'copyright', '1' ) && of_get_default('copyright') ) {
echo '<div class="copyright" style="padding: 0em 0 2.5em 0; text-align: center;';
if ( of_get_option( 'copyright', '' ) ) {
$typography = of_get_option('copyright_typography');
} else $typography = of_get_default('copyright_typography');
echo 'font-family: ' . $typography['face'] . '; font-size:' . $typography['size'] . '; font-style: ' . $typography['style'] . '; color:'.$typography['color'] . ';">';
echo of_get_option( 'copyright_text', of_get_default('copyright_text') ); echo '</div>';
} ?>
And add to style.css:
@media screen and (max-width: 62.5em) {
.copyright {
color:#000000 !important;
}
}