Forum Replies Created
-
AuthorPosts
-
Thanks for the response Nick, my next question was if you were using BBPress – but you answered that already..
I pretty much always use the same themes, so not positive on this one but..
Try adding bottom margin or clear to #home h4 or #home “widget class” h4
widget class where widget is the name of the home left (varies from theme to theme)
Decrease #content width in teh CSS by the amount you increase #content padding width
Meant margin not padding there, but no edit link so I couldn’t remove from earlier post
Decrease #content width in teh CSS by the amount you increase #content padding width. Or you could just reduce content width as the float is set to left.
Example:
#content {
float: left;
padding: 10px 0 20px;
width: 420px;
}Possible Change:
#content {
float: left;
padding: 10px 10px 20px 0;
width: 410px;
}Failure to remove brackets will most likely result in a fatal error
/** Add custom field above post title */
add_action( ‘genesis_before_post_title’, ‘luscious_post_image’, 8 );
function luscious_post_image() {if ( is_page() )
return;if ( $image = genesis_get_image( ‘format=url&size=post-photo’ ) ) {
printf( ‘<a href=”%s” rel=”bookmark”><img class=”post-photo” src=”%s” alt=”%s” /></a>’, get_permalink(), $image, the_title_attribute( ‘echo=0′ ) );
}}
November 23, 2012 at 7:43 pm in reply to: Need Trade Show Booth Registration / Purchase Form / Taking money #1443For the PayPal stuff, I think you need to get the plugin (included free in your GF license), but once you play with Gravity Forms, you will ask yourself why you ever tried forms with WP any other way – one of the few times you will run across truth in advertising with point and click.
November 23, 2012 at 3:18 pm in reply to: When to use forums -vs- when to use support request? #1406I’m kinda hoping the development team won’t rush to shut down the old forums for that very reason. Until the new forums really get going, there are a lot of answers that can be found in the old forums (for example: Yesterday I used a link from the old forums to answer a question in the new forums – because the answer was already written out).
The clients always right when it comes to the design of their website, even if it turns your stomach
Go back to nicks site and copy the clean code again, make certain you copy the entire block and aren’t cutting anything off. Also make certain when pasting into functions you aren’t breaking any existing elements.
Paste into notepad or simple text to ensure your code is clean
IE 9 is the first version to support border-radius, so if in IE8 or compatibility mode expect squared edges. Also, expect a lot of extra work for anything in compatibility mode. My rule of thumb is that if Microsoft no longer supports it, i don’t code for it.
You may also want top proof in Google Chrome and Apple Safari – both are webkit, but display slightly different in some cases.
Each site is unique, but this data from W3 Schools can be helpful.
You can make the themes do nearly anything you can think of. This should help get you started … but it’s not for sidebar, you would use primary sidebar widget for that. this will give you a “home widget” = to width of content area. I used it in eleven40 to get more control of presentation.
http://www.studiopress.com/support/showthread.php?t=100623&highlight=mystyle_home_loop_helper
-
AuthorPosts