Add this to the .htaccess file
<IfModule mod_substitute.c>
SubstituteMaxLineLength 10m
</IfModule>
Add this to the .htaccess file
<IfModule mod_substitute.c>
SubstituteMaxLineLength 10m
</IfModule>
.full-link a:after {
display:block;
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
content:'';
}
Add this to the .htaccess file in the WordPress Uploads directory to block PDF access to non logged-in users.
RewriteCond %{REQUEST_FILENAME} (.pdf)
RewriteCond %{HTTP_COOKIE} !wordpress_logged_in_([a-zA-Z0-9_]*) [NC]
RewriteRule .* - [F,L]
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' );
Classes and tags to change CSS in most main menus.
.main-navigation li.menu-item a{
font-family:
font-weight:
color:
}