Forum Replies Created
-
AuthorPosts
-
mmc05129
MemberLooks like you figured it out?
I was going to suggest commenting out this from your media query:
.responsive-menu {
display: none;
}mmc05129
MemberI'm sorry I don't have a solution for you, but I think I can tell you why your navigation background graphic is extending to the right and not the left. You've got it set as the background for .genesis-nav-menu, and then the width is set to 2500 (obviously to accommodate the graphic). So, your graphic "begins" where the nav menu begins and then extends to the right.
Maybe you could move the nav to a full-width responsive widget? Maybe one of the widgets that people use for "call to action" banners where the background color extends as wide as the browser window. I don't know exactly how to accomplish this, but I'm sure it's doable.
Hope that gets you headed in the right direction...
Can someone more experienced chime in?
mmc05129
MemberHello, not sure if you've found your answer, but here ya go.
After you remove the "unregister" code as you described above, you need to now "register" the header right widget area with this code in functions.php. There are a bunch of other widget areas being regiestered...i just put it in with them:
//* Register widget areas
genesis_register_sidebar( array(
'id' => 'header-right',
'name' => __( 'Header Right', 'daily-dish' ),
'description' => __( 'This is the header right widget area.', 'daily-dish' ),
) );Then in my style sheet, I called the widget and code for my specific plugin
.site-header .simple-social-icons {
float: right;
margin-top: 12px;
}Hope that helps,
Maggiemmc05129
MemberI am having the same problem as monicasalazar, however, setting the menus properly didn't fix it for me.
Initially, I did modify the functions.php file. However when I saw the issue, I removed the entire genesis and streamline themes and then reinstalled clean versions. The problem is still happening.
How can I get the landing page to work properly?
Thanks,
Maggie -
AuthorPosts