Skip to content

Instantly share code, notes, and snippets.

View robgolbeck's full-sized avatar

Rob Golbeck robgolbeck

View GitHub Profile
@robgolbeck
robgolbeck / x-custom-header-navbar.php
Last active November 15, 2015 22:53
Custom Header Template for X Theme
<?php
// =============================================================================
// Outputs the child theme navbar.
//
// Step 1: Replicate _navbar.php to your child theme
// Notes:
// a) Path must match the path in parent theme: framework/views/global/_navbar.php
// b) Set logo and navigation layout to 'Stacked' in Appearance > Customizer > Header
// c) Wrap logo and content area in separate containers, to facilitate styling.
@robgolbeck
robgolbeck / x-nav-button-remove-shadow
Created December 6, 2015 08:36
X Theme Snippets: Remove shadow from mobile nav button.
/* remove box shadow from mobile nav button */
a.x-btn-navbar,
a.x-btn-navbar.collapsed,
a.x-btn-navbar.collapsed:hover {
box-shadow: none;
}