This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a { | |
| text-decoration: none !important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .storefront-pro-active.single-product .storefront-breadcrumb { | |
| display: block; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function disable_wpcomtoolbar ( $modules ) { | |
| if ( isset( $modules['masterbar'] ) ) { | |
| unset( $modules['masterbar'] ); | |
| } | |
| return $modules; | |
| } | |
| add_filter( 'jetpack_get_available_modules', 'disable_wpcomtoolbar' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .home #page > nav.secondary-navigation ~ .header-hero, | |
| .home #page .header-hero .storefront-pro-flexslider .slides li .slide-img { | |
| min-height: 75vw !important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .menu-toggle span { | |
| font-size: 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #header-hero-slider-wrap .button { | |
| color: #fff; | |
| background: rgba(0, 0, 0, 0.0); | |
| border: 1px solid; | |
| border-radius: 10px; | |
| font-size: 20px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #header-hero-slider .slides .flex-caption { | |
| color: #fff; /*Change color here*/ | |
| text-shadow: .2em .05em .1em rgba(0,0,0,0.8); /*Perhaps use some text shadow to improve readability..?*/ | |
| text-align: left;/*Set left/right alignment*/ | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media (max-width:768px){ | |
| .storefront-pro-active #masthead .primary-navigation { | |
| display: inline-block; | |
| } | |
| } |