Notes on WordPress Plugins

WordPress

Galleries

Sliders

Contact Forms

Notes on WordPress PHP

WordPress

Add 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

WordPress

Classes and tags to change CSS in most main menus.

.main-navigation li.menu-item a{
    font-family:
    font-weight:
    color:
}