WordPress
Notes on WordPress Plugins
WordPressNotes on WordPress PHP
WordPressAdd this to the functions.php file in your theme folder. Taken from here.
<?php
// Allow subscribers to see Private posts and pages
$subRole = get_role( 'subscriber' );
$subRole->add_cap( 'read_private_posts' );
$subRole->add_cap( 'read_private_pages' );
Notes on WordPress CSS
WordPressClasses and tags to change CSS in most main menus.
.main-navigation li.menu-item a{
font-family:
font-weight:
color:
}