Forum Replies Created
-
AuthorPosts
-
April 15, 2014 at 4:28 pm in reply to: Site Header logo as image instead of background image #100595
optimus203
MemberThis is what I needed, and the removal of display:none; on .header-image .title-area
// Add support for custom header - makes logo a CSS background image // Comment out to allow for logo as <img> element /* add_theme_support( 'genesis-custom-header', array( 'width' => 360, 'height' => 87 ) );*/ // Remove default site title remove_action( 'genesis_site_title', 'genesis_seo_site_title' ); // Add logo as IMG instead of background iamge function company_logo() {?> <a id="sitelogo" href="<?php bloginfo( 'url' ); ?>"><img src="http://www.url.com/wp-content/themes/theme/images/logo.png" alt="<?php bloginfo('name')?>" title="<?php bloginfo('name')?>" /></a><?php ; } add_action( 'genesis_site_title','company_logo',5,1);April 15, 2014 at 4:17 pm in reply to: Site Header logo as image instead of background image #100589optimus203
MemberHey Lauren. That is not what I want. I've like the logo to exist as an
element instead of a background image.
April 15, 2014 at 7:59 am in reply to: Site Header logo as image instead of background image #100391optimus203
MemberHi Lauren. You can see what I'm talking at http://www.davalign.com/404 . The logo is background image. I would like it to be a clickable image instead.
optimus203
Member@Sridhar - Thanks! I went with that solution for now.
@braddalton - thanks for the tip. I'll look into this later.optimus203
MemberYes I figured it out. Thanks.
February 18, 2014 at 7:44 pm in reply to: Genesis Mobile Menu Beta doesn't work with Genesis 2.0 #91052optimus203
MemberYeah, Ubermenu is another popular premium option. Responsive Select Menu offered all the features I need.
February 18, 2014 at 12:38 pm in reply to: Genesis Mobile Menu Beta doesn't work with Genesis 2.0 #91010optimus203
MemberI agree. If I had one complaint with Genesis, it would be the lack of support on this issue as well.
I've been using responsive select menu plugins to accomplish most of my needs. Check out: http://wordpress.org/plugins/responsive-select-menu/
optimus203
MemberThanks Brad. That was the filter I found on another site. Works like a charm. Thanks for the time and info.
optimus203
MemberI figured it out. Had to change the
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_content_sidebar' );line in home.php to:
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );optimus203
MemberSo is there a custom function solution for this problem? I have the same issue and would like to try to avoid modifying the plugin code.
November 21, 2013 at 6:12 pm in reply to: Add text after #footer-widgets and before .footer-widgets-1 #74821optimus203
MemberThe theme is just registering the widget areas via:
add_theme_support( 'genesis-footer-widgets', 4 );
There is no genesis_register_sidebar section for these widgets. Make sense? Sorry, I'm still a noob with this framework.
November 21, 2013 at 6:05 pm in reply to: Add text after #footer-widgets and before .footer-widgets-1 #74816optimus203
MemberBut I want it to reside within the #footer-widgets div
optimus203
MemberThat worked. Thanks Robin!
November 12, 2013 at 7:44 am in reply to: Genesis Mobile Menu Beta doesn't work with Genesis 2.0 #72459optimus203
MemberThanks Susan. I did try that a while back and it seemed to work. Hopefully StudioPress will their plugin soon.
optimus203
MemberCan you share what resource you found that was helpful to achieve this? I've tried implementing http://wordpress.org/plugins/responsive-select-menu/ into the Outreach child theme, but it does not function on iPhone's.
optimus203
MemberI'm developing on my local system.
optimus203
MemberPerfect. Exactly what I needed. Thanks.
optimus203
MemberSorry - nevermind. I forgot a setting in Genesis menu. All is well now, although the Alternate Menu option doesn't seem to change anything.
-
AuthorPosts