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 Logo support only works in WordPress 4.5 or later. | |
*/ | |
if ( version_compare( $GLOBALS['wp_version'], '4.5', '>=' ) ) { | |
/** | |
* Let WordPress manage the site logo. | |
*/ | |
add_image_size( 'plate-logo', 9999, 9999 ); |
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 | |
/** | |
* The file for displaying the more portfolio loop below the portfolio single. | |
* It is called via the single-portfolio.php. | |
* | |
* | |
* @package WordPress | |
* @subpackage Trim | |
* @author ThemeBeans | |
* @since Trim 1.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
/** | |
* Customize the default success message presented on the contact template. | |
*/ | |
function prefix_custom_success_msg() { | |
esc_html_e('Wohoo! We have received your mail!', 'mark'); | |
} | |
add_filter( 'bean_contactform_success_msg', 'prefix_custom_success_msg' ); | |
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
body { | |
font-family: | |
font-size: | |
} | |
body #content { | |
line-height: | |
} | |
body #content p { |
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
body .site-archive a:hover, | |
body .header .active, | |
body .header a:hover, | |
body .logo_text:hover, | |
body .current-menu-item a, | |
body .entry-content a, | |
body .portfolio .project-meta a:hover { | |
text-decoration: none; | |
} |
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
body .bean-contact-form label { | |
display: inline-block; | |
text-align: left; | |
color: #fff; | |
} |
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
/* | |
Theme Name: Emma | |
Adding support for language written in a Right To Left (RTL) direction is easy - | |
it's just a matter of overwriting all the horizontal positioning attributes | |
of your CSS stylesheet in a separate stylesheet file named rtl.css. | |
https://codex.wordpress.org/Right_to_Left_Language_Support | |
*/ |
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
<nav> | |
<a href="#Developers">Developers</a> | |
</nav> | |
<section id="Developers"> | |
<h1><a href="#Developers">Developers</a><small><a href="#html">Back to Top</a></small></h1> | |
<p>If you'd like to add another menu location to use in the theme, search for the <code>@@slug_setup</code> function in your theme's functions.php file and copy that whole function to your child theme.</p> | |
</section> |