Skip to content

Instantly share code, notes, and snippets.

View seothemes's full-sized avatar

SEO Themes seothemes

View GitHub Profile
@seothemes
seothemes / bbpress.scss
Created August 11, 2018 09:12
This is a quick, sassified version of the default bbPress stylesheet.
/**
* bbPress specific CSS
*
* @package bbPress
* @subpackage Theme
*/
/* =bbPress Style
-------------------------------------------------------------- */
.site-header {
.wrap {
.title-area {
.site-title {
a {}
}
.site-description {}
.custom-logo-link {
.custom-logo {}
}
@seothemes
seothemes / simple-social-icons.scss
Created August 24, 2018 04:12
Simple Social Icons brand colors in Sass
$color--dribbble: #ea4c89;
$color--email: #049fb3;
$color--facebook: #3b5998;
$color--flickr: #ff0084;
$color--github: #333;
$color--gplus: #dd4b39;
$color--linkedin: #007bb6;
$color--pinterest: #bd081c;
$color--rss: #ff6600;
$color--stumbleupon: #eb4823;
@seothemes
seothemes / custom-title-link.php
Last active August 28, 2018 12:22
Change the Genesis site title URL
@seothemes
seothemes / display-pro-pricing-table.html
Created September 23, 2018 06:46
Display Pro Pricing Table
<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>
@seothemes
seothemes / functions.php
Created October 3, 2018 09:17
Corporate Pro latest posts title filter
<?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
@seothemes
seothemes / bootstrap-compat.php
Created January 26, 2019 02:01
Compatibility checker functions
<?php
add_action( 'plugins_loaded', 'compat_checker_deactivate' );
/**
* Description of expected behavior.
*
* @since 1.0.0
*
* @return void
*/
@seothemes
seothemes / style.css
Created January 26, 2019 22:54
Fixes the home page layout issue when no front-page.php in Corporate Pro 1.0.1
@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
@seothemes
seothemes / style.css
Created January 28, 2019 01:16
Fixes newspaper pro sidebar social icon color
.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;