Style Stuff

Print Styles

In the parent theme _tf_print.less turns off the header and footer.  Other styles can be done in the child theme, wrapped like this:

  1. @media print {
  2.     header,
  3.     footer {
  4.         display:none;
  5.         }
  6.     }
@media print {
    header,
    footer {
        display:none;
        }
    }

Admin Styles

In child, A blank style-admin.css which can be used for admin pages and is already enqueued

Admin Editor Styles

By default WP looks for an editor-style.css file in theme.

We’re using other file names to be clear.  See functions.php for how these files are instantiated.

In TVF parent theme:

editor-tvf-style.css

Overrides in TV child:

editor-tvc-style.css

to enable in child uncomment out this in functions.php:

//add_editor_style(‘editor-tvc-style.css’);

Login Page Styles

In child, style-login.css – contains examples of login style – commented out by default