Forum Replies Created
-
AuthorPosts
-
Chris MooreMember
Impressive, David Chu! Much thanks!!! This nailed it...
Do you notice anything else that needs attention (I have made some changes), especially watching the resizing of the boxes and the placement of the images, etc., as the different media queries hit? I would reallllly appreciate some help.
Once again, the password for the page is: temp
http://moorecreativeideas.com/new-about-page/
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comApril 22, 2013 at 11:43 pm in reply to: Help with Hupso Share Buttons and eleven40 child theme… #37066Chris MooreMemberJust a friendly *bump* here... Still looking for solutions.
Thanks!
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comApril 18, 2013 at 1:07 pm in reply to: Help with Hupso Share Buttons and eleven40 child theme… #36192Chris MooreMemberTypo: This drop-down goes behind, and you can actually access it.
Should be: This drop-down goes behind, and you can't actually access it.
And there were a few other typos... It's 3:08am where I am right now. LOL...
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberThanks @wmwebdes! I figured as much.. was just trying to bring it to the attention of the powers that be here. 🙂
Problem solved... The amazing Support Staff just emailed me and the post is now un-spammed and live on the site, which can be found here:
http://www.studiopress.community/topic/help-with-hupso-share-buttons-and-eleven40-child-theme/
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberAnd it seems I'm not the only one...
http://www.studiopress.community/topic/duplicate-topic-created/
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberI'm also having the SAME problem right now... It's probably because I had more than one link in my post. I linked to a plugin I referenced (in the WordPress plugin repository), and I linked to a page on a website that I am diagnosing a problem on.
I think the forum needs to up it's allowed link amount.
~ Chris M.
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberI sorted it out! But I would like to get all of your opinions on the solution.
Here's what I ended up using:
.enews input {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}Read more about it here: http://paulirish.com/2012/box-sizing-border-box-ftw/
Any thoughts, anyone?
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberAnd by the way, unfortunately, I don't have a live example to show. I don't want to take this live until I fix it.
However, if it helps, I am using the eleven40 child theme, and this is an eNews Extended widget that I have done some custom designing on.
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comApril 6, 2013 at 9:53 am in reply to: How do you create a generic template page for eleven40? #33482Chris MooreMemberI'm sorry, things didn't come out too clearly, I think because of the way code is handled in the forums here... Are you saying this:
remove_action( 'genesis_loop','genesis_do_loop' );
add_action( 'genesis_loop','my_custom_loop' );function my_custom_loop() {
function my_custom_content() {
$args = array(
'posts_per_page' => 5,
'post_status' => 'publish',
);
genesis_custom_loop( $args );
}
}
genesis();
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comApril 2, 2013 at 4:38 am in reply to: How can you change the font-size range in the tag cloud via functions.php? #32600Chris MooreMemberHere's an even shorter and "cleaner" way to do it (sharing for those who might find this thread):
http://wordpress.org/support/topic/different-font-sizes-for-tag-clouds#post-2948370
Here's what I ended up using for my purposes (I wanted it to be 8pt - 11pt in size):
add_filter('widget_tag_cloud_args','set_tag_cloud_sizes');
function set_tag_cloud_sizes($args) {
$args = array('smallest' => 8, 'largest' => 11);
return $args;
}
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comApril 2, 2013 at 4:20 am in reply to: How can you change the font-size range in the tag cloud via functions.php? #32599Chris MooreMemberSolution City! I figured it out from this short tutorial here: http://chris.dziemborowicz.com/blog/2009/06/11/change-the-tag-cloud-font-size-in-wordpress-2-8/
I just used the short code snippet he shared and placed it in my child theme's functions.php. I ignored the suggestion of making it into a plugin.
Here's the code snippet I used in my child theme's functions.php:
function tcr_tag_cloud_filter($args = array()) {
$args['smallest'] = 8;
$args['largest'] = 12;
$args['unit'] = 'pt';
return $args;
}Followed by:
add_filter('widget_tag_cloud_args', 'tcr_tag_cloud_filter', 90);
Anything I need to lookout for or be aware of? Is there a "better" way to do this?
Thanks everyone!
~ Chris M.
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberThanks @anitac and @braddalton!
I will definitely be checking out the Genesis Simple URL’s plugin...
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberOkay, after fooling around with all kinds of different variations in the code, I got this one to work. Just wanted to check back and see if this is the "best" way to do it, and if the code is "clean"... Thanks!
/** Add the page title section */
add_action( 'genesis_before_content_sidebar_wrap', 'eleven40_page_title' );
function eleven40_page_title() {
if ( is_home() && is_active_sidebar( 'page-title' ) )
genesis_widget_area( 'page-title', array(
'before' => '',
) );
}
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberI'm sorry for the trouble @braddalton, but would you be so kind as to actually spell out for me where the is_home or is_front_page should go in this snippet:
/** Add the page title section */
add_action( 'genesis_before_content_sidebar_wrap', 'eleven40_page_title' );
function eleven40_page_title() {
genesis_widget_area( 'page-title', array(
'before' => '',
) );
}
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberI found this code snippet in the eleven40 functions.php. I know this is the snippet I need to work with, but I just need to know exactly what I need to add to this code to make the page title widget only appear on the front page of the site (which is where the blog posts display).
/** Add the page title section */
add_action( 'genesis_before_content_sidebar_wrap', 'eleven40_page_title' );
function eleven40_page_title() {
genesis_widget_area( 'page-title', array(
'before' => '',
) );
}
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.comChris MooreMemberYou said:
2. Add a conditional tag to the function which displays the widget in the hook location
Could you please specify the exact code for functions.php I would use to display the Page Title widget (in the eleven40 child theme) only on the front page of a site (the homepage)?
Thanks for your help!
Resepctfully, Chris Moore
Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com -
AuthorPosts