To use this code, simply copy and paste the code into Wordpress Admin Dashboard > PageLines > Settings > Custom Code > CSS Rules.
The code can also be applied to the style.css when you're using the PageLines Customise plugin, which can be installed from within the PageLines Store and will also work Child themes too.
If you have a CSS tip or trick you would like to submit please add it to the comments below.
NAVIGATION
Navigation background color full width of site
#nav { background-color: #F1F1F1;} Example Image: 
Navigation background color full width of layout
#nav .content-pad { background-color: #F1F1F1;} Example Image: 
Removes the bottom border from the navigation
.navigation_wrap { border-bottom: 0 none !important; } How to change the primary nav text color.
.main_nav li a { color: #FF0000; } This will make the text bold:
.main_nav li a {font-weight: bold;} This will make the text underlined
.main_nav li a {text-decoration: underline !important;} Change the background hover color & text color
.main-nav li a:hover, .main-nav .current-menu-ancestor .current_page_item a:hover, .main-nav li.current-menu-ancestor ul a:hover { background-color: #FFF; color: #FF0000; } Example Image: 
SUBMENU/DROPDOWN MENU
Coming Soon...!
MISC
Read More/Continue link
Turn the Read more on post excerpt into a button (sort of)
.continue_reading_link { color: #555;background-color: #f1f1f1;padding: 5px 15px;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px; } /* Change the color when hovering over Read more */ .continue_reading_link:hover { background-color: #4E7EAF;color: white;text-decoration:none !important; } Example Image: 
More to come soon...













