Changing Header scroll height for Twenty Seventeen theme on ALL pages

from that question you mentioned, this is the code: .twentyseventeen-front-page.has-header-image .custom-header-media, .twentyseventeen-front-page.has-header-video .custom-header-media, .home.blog.has-header-image .custom-header-media, .home.blog.has-header-video .custom-header-media { height: 1200px; height: 100vh; max-height: 100%; overflow: hidden; } Revision: Try removing home and front-page from the selectors for your specific use: You can use this to replace what you put in and it will cover the … Read more

How to insert a Button or custom text on twentyseventeen header

I’m guessing in involves PHP to the site-branding file, but not really sure. yes it does. You to create a child theme based on the twentyseventeen theme, and add create a new custom header.php file with the modifications you need, in order to style your header. Your custom twenty seventeen header file would look something … Read more

Filter and modify entry-footer link in twentyseventeen

The category link that you are referring to, that is displayed beneath the single post page content is not added with a filter. It is displayed via a function called twentyseventeen_entry_footer(). If you take a look at the themes files you can find the function on line #59, within the file: /wp-content/themes/twentyseventeen/inc/template-tags.php Here is the … Read more

How to change Twenty Seventeen theme’s navigation bar location?

Update your .navigation-top class to use top: 0; so there is no gap for anonymous users. .navigation-top { background-color: transparent; border: none; width: 100%; height: 120px; top: 0; font-size: 130%; bottom: auto; position: fixed; left: 0; right: 0; z-index: 7; } Then include an additional style for authenticated users which accounts for the admin bar. … Read more

Add custom SVG icons to Social Icon MENU in WordPress Twenty Seventeen Child Theme

You don’t need to copy the inc/icon-functions.php file and include/require it from the child theme — remember that the parent theme will also load the same file/functions and that would result in a PHP error if you did not rename the functions in the copied file. So try these: (You’ve already done this properly, as … Read more