Forum Replies Created
-
AuthorPosts
-
Ipstenu
MemberGo back to the menu screen (/wp-admin/nav-menus.php) and look on the left where it says 'Theme Locations' 🙂 That's what you're looking for.
Ipstenu
MemberYou have to add it to your allowed mimes:
add_filter('upload_mimes', 'add_custom_upload_mimes');
function add_custom_upload_mimes($existing_mimes){
$existing_mimes['epub'] = 'application/epub+zip'; //allow epub files
return $existing_mimes;
}
I put it in an mu-plugin called sitewide-functions.php 🙂
Ipstenu
MemberYou'd want to make the content (div#content-sidebar-wrap or div#content) transparent with
opacity:0.6;
Fiddle the numbers 🙂
Ipstenu
MemberThe content image border is in .entry-content img{}
And you can specify:
body.page .entry-content img{border:none;}
That should do it.
Sidebar...
#sidebar img {
border: none!important;
}I'm sure there's something better, but that's quick and dirty.
Ipstenu
MemberWhen the documentation is nearly three times as long as the code, and the code is self-explanatory, I follow Otto's rule 😉
If anything, I'd do this for a site not my own:
// Change default gravatar size in comments
add_filter('genesis_comment_list_args', 'childtheme_comment_list_args');
function childtheme_comment_list_args($args) {
$args['avatar_size'] = '90'; // Value is side length of square avatar, in pixels.
return $args;
}
January 13, 2013 at 3:04 am in reply to: How to implement Backstretch (as pg bg) with child theme #11551Ipstenu
MemberSince jquery is included in WP and reincluding it multiple times can cause things to go blaaaaargh, I would suggest this:
Put the backstretch file in your theme's js folder and then this in your functions:
/** Stretch your back **/function backstretch_js() {
wp_enqueue_script(
'backstretch',
get_stylesheet_directory_uri() . '/js/backstretch.js',
array('jquery'), '2.3', yes
);
}
add_action('wp_enqueue_scripts', 'backstretch_js');
(You can use //cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.0.3/jquery.backstretch.min.js instead of the get stylesheet if you just wanna use google).
Then you just need the block element. I put it in /wp-admin/admin.php?page=genesis on the footer section. Works nicely 🙂
Ipstenu
Memberhttp://www.yourdigitalmarketer.net/wp-content/themes/crystal/images/favicon.ico is still showing the Genesis icon. In fact, so is the other genesis URL.
Ipstenu
MemberThat does make sense.
The font is Abel, and I pulled it in via Google 🙂 I just like how firm and calm it is 😉 I also love Lobster, but it's so overused now. *tsk*
Ipstenu
MemberNiiiice. 😀
Suggestion. The HTML Tags in the box below are too light to read:Â http://cl.ly/image/1h1t2P103A0I
-
AuthorPosts