Forum Replies Created
-
AuthorPosts
-
December 13, 2012 at 10:24 pm in reply to: Moving new widget before footer widgets in Executive 2.0 #5162
You’re Welcome!
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookDecember 13, 2012 at 10:11 pm in reply to: Moving new widget before footer widgets in Executive 2.0 #5159Not sure what you mean. It is certainly not anywhere near the responsive slider.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookI can’t seem to replicate this. There are a few plugins out there that have been messing with widgets since the upgrade to 3.5 so you might try disabling plugins to see if there is a conflict. I can verify that the page dropdown still works on my WP 3.5 development installs.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookThey should be on the a, not the a:hover. Here’s an example:
a,
a:visited {
-webkit-transition: all 0.3s ease-out; /* Safari 3.2+, Chrome */
-moz-transition: all 0.3s ease-out; /* Firefox 4-15 */
-o-transition: all 0.3s ease-out; /* Opera 10.5–12.00 */
transition: all 0.3s ease-out; /* Firefox 16+, Opera 12.50+ */
}
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookAre you using different sections of content? If so, then it would be easier just to create widget areas and use http://wordpress.org/extend/plugins/genesis-featured-widget-amplified/
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookThe shortcode isn’t going to do that. You’ll have to dig into some code.
http://codex.wordpress.org/Function_Reference/get_the_category#Show_the_First_Category_Name_Only
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookBasically, all you need to do is widen the .menu-primary ul (submenu). Thus, it is just a wider dropdown. Be careful though of .menu-primary ul ul then.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookIf you need to override the custom background, you can use !important in your css.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookSome plugins that are doing some funky stuff with jquery are causing problems. As far as the theme editor, I just tested on a development install, and the theme editor is working fine for me. Though, I consider it a blessing when the admin editor is disabled.
It really plays havoc with even css files sometimes.Update: tested on a second dev install and I can edit css files there as well. Make sure you don’t have a line in your wp-config file that disables it.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookThat gives me enough info. To filter the No Posts Text:
add_filter('genesis_noposts_text','custom_noposts_text');
function custom_noposts_text() {
$custom_text = "Drat. I really should write about that, shouldn't I? Try another search.";
return $custom_text;
}Create a search.php file and put it in your child theme folder with this content:
<?php
/** Remove the post info function */
remove_action( 'genesis_before_post_content', 'genesis_post_info' );
/** Remove the post meta function */
remove_action( 'genesis_after_post_content', 'genesis_post_meta' );
/** Removes everything form post content **/
remove_all_actions( 'genesis_post_content' );
/** Add your custom content **/
add_action( 'genesis_post_content', 'custom_post_content' );
function custom_post_content() {
the_content_limit( '800', __( 'Read More »', 'child_textdomain' ) );
}
genesis();You can change the 800 to whatever length you want. Note that if you have filtered the Read More in functions.php, the functions.php version will rule unless you also remove the filter here in this file.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookDecember 13, 2012 at 4:09 pm in reply to: Standardize featured images on home page of Balance theme? #5058Welcome!
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookSo you want just the title and the excerpt? We need more info as to how your site is setup (theme options for blog), including your url.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookAh, that’s weird, your first link has a bugger on the end of it. http://www.hdiarchitect.com/exterior-gallery/%C2%A0
I hate IE8 issues.
Try adding
.ngg-gallery-thumbnail img {
width: auto;
}
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookTry setting min-width: 1160px on your #wrap div. It’s your slider shadow div throwing things off I think.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookDecember 13, 2012 at 2:57 pm in reply to: Standardize featured images on home page of Balance theme? #5035Hard to tell without seeing your site, but you may need to Regenerate Thumbnails.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on Facebook -
AuthorPosts