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
| <?php wp_nav_menu( array( 'theme_location' => 'new-menu' ) ); ?> |
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
| <?wp_nav_menu( array( 'theme_location' => 'new-menu', 'container_class' => 'new_menu_class' ) ); ?> |
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
| @font-face { | |
| font-family: FontName; | |
| src: url(public_html/your-site/wp-content/themes/your-theme/fonts/FontName-Regular.ttf); | |
| font-weight: normal; | |
| } |
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
| p { | |
| font-family: FontName; | |
| } |
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
| .upfront-region-container-bg { | |
| height:1px; | |
| } |
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
| .ucontact-input { | |
| width:600px; | |
| max-width:100%; | |
| opacity:0.9; | |
| padding:15px; | |
| padding-left:8px; | |
| margin-bottom:20px; | |
| border:1px solid #963d16; | |
| background-color:#f9f9f9; | |
| font-family:Lato; |
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
| blockquote:before { | |
| background: url(http://wringer.iamjennialways.com/artisanwalls/wp-content/themes/uf-spirit/images/sprite.png); | |
| background-image: url(http://wringer.iamjennialways.com/artisanwalls/wp-content/themes/uf-spirit/images/sprite.svg), none; | |
| content:""; | |
| display: block; | |
| width: 31px; | |
| height: 23px; | |
| position: relative; | |
| left:-16px; | |
| background-position: -542px -549px !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
| function google_fonts() { | |
| $query_args = array( | |
| 'family' => 'Open+Sans:400,700|Oswald:700' | |
| 'subset' => 'latin,latin-ext', | |
| ); | |
| wp_register_style( 'google_fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null ); | |
| } | |
| add_action('wp_enqueue_scripts', 'google_fonts'); |
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
| font-family: 'Open Sans', sans-serif; | |
| font-family: 'Oswald', sans-serif; |
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
| h1 { | |
| font-family: 'Oswald', sans-serif; | |
| font-weight:700; | |
| font-size: 28px; | |
| color: #3c3c3c; | |
| } | |
| p { | |
| font-family: 'Open Sans', sans-serif; | |
| font-weight:400; |