Forum Replies Created
-
AuthorPosts
-
hmistler
MemberI should add that when I click 'customize', the header logo DOES appear on the home page, with the customize options to the left. But still when you visit http://newenglandcoa.org/ it goes back to the site title.
hmistler
MemberAh I see, thank you. Yes, it was the 40px background color area, sorry for any confusion. Your solution worked.
hmistler
MemberThanks for the reply - it seems that scrolls and anchors are just getting me to another part of the page, whereas I'm looking for text to appear & disappear. I'll keep looking, I read something about toggles that sounds promising.
hmistler
MemberThank you so much, that worked!
hmistler
MemberThat's great, thank you. Any chance it can be moved to be above the share buttons I have? I'm using Simple Share Buttons.
hmistler
MemberMakes sense now. Thanks for taking the time to explain!
hmistler
MemberAh, I see. That worked. So "clearfix" clears any float that the column classes use? Just curious, why would the clearfix div be necessary after the columns if my content is not within the column divs?
hmistler
MemberThanks for the reply; I tried that and it isn't working either. It's really throwing me for a loop, I've never had this problem before! It seems that the image underneath reacts to whatever is going on up top, and I can't figure out why. You can really see it now: http://www.haleymistler.com/design/elizabeth-harrington/ Thanks for your help!
hmistler
MemberAh, it worked! I used my custom post type and the entry meta is now gone. Thank you!!
hmistler
MemberThat worked, thank you!
hmistler
MemberWow, thank you so much! that second option worked perfectly!
hmistler
MemberMe again - happy to report I solved this issue! Here's what I changed, in case anyone else has this problem:
//* Add About Me widget add_action( 'genesis_before_footer', 'about_me' ); function about_me() { if (is_page('about')) genesis_widget_area( 'about-me', array( 'before' => '<div class="about-me widget-area"><div class="wrap">', 'after' => '</div></div>', ) ); }
hmistler
MemberSorry for the confusion - I was able to get that previous wrap tutorial to work (had left out one line) but it wraps my background color as well. So I'm back to my original code:
//* Add About Me widget add_action( 'genesis_before_footer', 'about_me' ); function about_me() { if (is_page('about')) genesis_widget_area( 'about-me', array( 'before' => '<div class="about-me widget-area" id="aboutme">', 'after' => '</div>', ) ); } genesis_register_sidebar( array( 'id' => 'about-me', 'name' => __( 'About Me', 'swank' ), 'description' => __( 'This is the About Me widget', 'swank' ), ) );
I feel like I need to add this somewhere:
<div class="wrap">
But I am not sure where I need to add it so the content wraps but not the background. Hope that makes sense...hmistler
MemberI ended up solving this - thank you
hmistler
MemberI did try out a few things with z-index; it only changes the order of the overlap, not it's actual vertical position. When I change the position to "fixed", it does what I want it to on the home page: http://www.jpdevelopmentcorp.com/home/
but it does not move down far enough on other pages with content: http://www.jpdevelopmentcorp.com/about/hmistler
MemberAh I see my mistake, thank you so much!
hmistler
MemberThanks so much, really appreciate it
hmistler
MemberThat worked, thanks!! Do mind telling me why I needed to add the markup_open and markup_close portions? Just trying to understand php better for future use!
hmistler
MemberOh, I see! I am new to php and trying to get the hang of it; I was able to fix it. Thank so much!
December 30, 2014 at 10:44 am in reply to: Make existing widget area full-width above header #135673hmistler
MemberThat worked! Thank you!
-
AuthorPosts