Hello,
1. To change the date stamp color, you need to add following css in your style.css file:
.entry-date { color:red; }
2. This occurs because, white color is set for current/select menu. You can change that color from http://www.atelierisabey.com/1sandboxblog/wp-content/themes/twentyten/style.css – line no. 442 and that css will display like this:
#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
color: #fff;
}
and you need to change it like this:
#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
color: #000;
}
3. To remove black bar:
You can put css code to hide footer in style.css file:
#footer { display:none; }
OR
You can remove/change that HTML from footer.php file. (http://www.atelierisabey.com/1sandboxblog/wp-content/themes/twentyten/footer.php)
Enjoy!! 😉
First, you seem to have lines of dashes in your CSS that interfere with some rules. Take out all the lines of dashes.
Then, try adding this to the end of style.css:
.entry-meta a:hover,
.entry-utility a:hover {
color: #0000FF;
}
#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
color: #0000FF;
}
This is perfect! Thank you so very much for your help and expertise! 🙂