Forum Replies Created
-
AuthorPosts
-
wpsmithMemberThis reply has been marked as private.wpsmithMemberThis reply has been marked as private.wpsmithMember
Your CSS is a bit buggy.
You currently have.
.homepage-gallery .polaroid-bg { background:url(images/polaroid-frame.png) no-repeat top left; width:236px; height:215px; float:left; display:inline; margin:0; padding: 40px 29px 38px 43px; } .boxgrid { background:#FFEB9D url(images/polaroid-back.png) no-repeat top left; float:left; width: 223px; height: 223px; text-shadow: 1px 1px 1px #000000; margin: 0; overflow: hidden; position: relative; }
Your image is 225px, so your
.boxgrid
styling is proper. However your.polaroid-bg
is not styled properly. Your margins are wonky as a result of the width being off (as well as your height but not presenting an issue at the moment). So, here's the fix for that:.homepage-gallery .polaroid-bg { background: url("images/polaroid-frame.png") no-repeat top left; width: 225px; height: 225px; float: left; display: inline; margin: 0 1px; // see comment below padding: 39px 41px; // I would adjust the background image to fit 40px nicely } .boxgrid { background: #FFEB9D url("images/polaroid-back.png") no-repeat top left; border: 1px solid #000; float: left; width: 225px; height: 225px; /*text-shadow: 1px 1px 1px #000000; // not sure what this is trying to accomplish?? */ margin: 0; overflow: hidden; position: relative; }
Now to fix the IE issue, you need to just expand the
.homepage-gallery
width to 940px.
March 27, 2013 at 8:46 pm in reply to: New image sizes not showing up in Genesis Featured Widget #31653wpsmithMemberIn lib/structure/custom.php, prose_do_custom_php() only requires the file if ! is_admin()
wpsmithMemberHello Jonathan,
The question is quite vague as to your needs. However, this should help you get you on your way:
wpsmithMemberwpsmithMemberUse
#home-slider
or.home-widget
. All my widets on my home page (not in sidebar) get .home-widget in case I want to style them a specific way. Then I use the ID to select a particular widget.
wpsmithMemberAdd the slider to the Home Slider widget in http://domain.com/wp-admin/widgets.php not Header Right.
wpsmithMemberIt appears that you've already done it. It's done via CSS if not with a custom header.
.header-image #header #title-area { background: url(images/logo.png) left top no-repeat; }
wpsmithMemberFebruary 13, 2013 at 11:40 pm in reply to: Trouble with Images on my blog posts (Need Help Please!) #20224wpsmithMemberHello,
Can you please post your functions.php file, especially anything that looks like this:
/** Add new image sizes */ add_image_size( 'home-featured', 255, 80, TRUE ); add_image_size( 'post-image', 642, 250, TRUE );
See also WordPress codex on add_image_size().
Then in Genesis > Theme Settings what is your image size selection?
Finally, did you install theme AFTER you already uploaded images, etc? If so, you need to regenerate thumbnails.
wpsmithMemberWhile I am not sure how it will turn out, you can try something like this:
add_action( 'genesis_site_description', 'child_social_icons' );
/**
* Output social icons (in header)
*/
function child_social_icons() {
//output icons here...
}
February 13, 2013 at 11:15 pm in reply to: Is there a Compatibility Issue with WordPress 3.5.1? #20221wpsmithMemberHello,
If I am not mistaken, you are using Lifestyle 1, which does have deprecated code within it that would be problematic and may be the source of your issues.
Could you please post your functions.php code?
Thanks,
Travis
February 13, 2013 at 11:10 pm in reply to: How to exclude Breadcrumbs from certain categories #20220wpsmithMemberwpsmithMemberFirst, you need to register the sidebar for the backend. Just add the sidebar registration to the functions.php file
And then, you add it to your home.php file.
wpsmithMemberThis was fixed in trunk on 1.17.2013 by Mark Jaquith in his audit. Release fix TBD.
Personally, I believe this to be a WordPress issue since map_meta_cap() does not check or sanitize $args[0]. So I've submitted a ticket to WordPress core as a result.
wpsmithMemberBill's right, but you probably want to add a priority to guarantee it comes after.
add_action( 'wp_enqueue_scripts', 'child_load_styles', 99 );
function child_load_styles() {
wp_enqueue_style('child_style_css', CHILD_URL . 'child_styles.css');
}
wpsmithMemberJanuary 14, 2013 at 11:50 pm in reply to: Simple Sidebars and Custom Post Types Archives Plugins Conflict? #12009wpsmithMemberwpsmithMemberYes, Genesis Custom Post Types Archives needs to be updated. 🙂 Why is that plugin author so lazy!
-
AuthorPosts