The website: http://www.amandagoodman.com
I've been investigating the problem in changing the color of the Amanda Goodman link at the top of the page. I've tried to put it in a div but that wouldn't call it in either.
I tried to change this:
#header h1 { padding: 30px 0 16px 0; font-family: Georgia; font-size: 3.2em; }
to
#header h1 a:link { padding: 30px 0 16px 0; font-family: Georgia; font-size: 3.2em; }
but that didn't work either. Any suggestions?
maybe try #header h1 a:link,
maybe try #header h1 a:link, #header h1 a:visited { ... }
You could try adding a
You could try adding a color:#ff0000; statement...
Hanscraft wrote: The website:
The website: http://www.amandagoodman.com
I've been investigating the problem in changing the color of the Amanda Goodman link at the top of the page. I've tried to put it in a div but that wouldn't call it in either.
I tried to change this:
#header h1 { padding: 30px 0 16px 0; font-family: Georgia; font-size: 3.2em; }
to
#header h1 a:link { padding: 30px 0 16px 0; font-family: Georgia; font-size: 3.2em; }
but that didn't work either. Any suggestions?
You already declared the link to be white with this line..
#header h1 a { color: #ffffff; }
change it to a different color from there. If you want to target only the home page, add a class or id to the body tag and specify it with something like this..
#home #header h1 a { color:#666; }
You can add this to your body tag in wordpress to give each page a specific id or class
<body <?php if (is_front_page()) { ?> id="home"<?php } elseif (is_home() || is_single() || is_archive()) { ?> id="blog" <?php } else { ?> id="interior" class="<?php $post_data = get_post($post->post_parent); echo $slug = $post_data->post_name; ?>"<?php } ?>>