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
| /** | |
| * bbPress specific CSS | |
| * | |
| * @package bbPress | |
| * @subpackage Theme | |
| */ | |
| /* =bbPress Style | |
| -------------------------------------------------------------- */ |
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
| .site-header { | |
| .wrap { | |
| .title-area { | |
| .site-title { | |
| a {} | |
| } | |
| .site-description {} | |
| .custom-logo-link { | |
| .custom-logo {} | |
| } |
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 | |
| // DO NOT include opening PHP tag. Only use the code below. | |
| add_filter( 'genesis_seo_title', 'custom_title_link', 10, 2 ); | |
| /** | |
| * Change the site title URL. | |
| * | |
| * @since 1.0.0 | |
| * | |
| * @param string $title Site title markup. |
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
| <div class="pricing-table"> | |
| <div class="one-third first"> | |
| <h4>Free</h4> | |
| <strong>$0</strong> | |
| <em>per month</em> | |
| <ul> | |
| <li>Benefit one</li> | |
| <li>Benefit two</li> | |
| <li>Benefit three</li> | |
| </ul> |
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 | |
| // DO NOT include opening PHP tag. Copy only the code below. | |
| add_filter( 'corporate_latest_posts_title', 'custom_latest_posts_title' ); | |
| /** | |
| * Change the latest posts title. | |
| * | |
| * @since 1.0.0 | |
| * | |
| * @return string |
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 | |
| add_action( 'plugins_loaded', 'compat_checker_deactivate' ); | |
| /** | |
| * Description of expected behavior. | |
| * | |
| * @since 1.0.0 | |
| * | |
| * @return void | |
| */ |
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
| @charset 'UTF-8'; | |
| /*! | |
| * Theme Name: Corporate Pro | |
| * Theme URI: http://seothemes.com/themes/corporate-pro/ | |
| * Description: Corporate Pro child theme for the Genesis Framework. | |
| * Author: SEO Themes | |
| * Author URI: http://seothemes.com/ | |
| * Version: 1.0.1 | |
| * Text Domain: corporate-pro | |
| * Tags: one-column, two-columns, left-sidebar, right-sidebar, accessibility-ready, custom-logo, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready |
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
| .sidebar #simple-social-icons-4 li.ssi-instagram a, | |
| .sidebar #simple-social-icons-4 li.ssi-instagram a:hover { | |
| color: #ffffff !important; | |
| background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important; | |
| } | |
| .sidebar #simple-social-icons-4 li.ssi-dribbble a, | |
| .sidebar #simple-social-icons-4 li.ssi-dribbble a:hover { | |
| color: #ffffff !important; | |
| background: #ea4c89 !important; |