You appear to be a bot. Output may be restricted
Description
Styles the header text displayed on the site.
Create your own twentysixteen_header_style() function to override in a child theme.
Usage
twentysixteen_header_style();
Parameters
Returns
void
Source
File name: twentysixteen/inc/customizer.php
Lines:
1 to 21 of 21
function twentysixteen_header_style() { // If the header text option is untouched, let's bail. if ( display_header_text() ) { return; } // If the header text has been hidden. ?> <style type="text/css" id="twentysixteen-header-css"> .site-branding { margin: 0 auto 0 0; } .site-branding .site-title, .site-description { clip: rect(1px, 1px, 1px, 1px); position: absolute; } </style> <?php }