Forum Replies Created
-
AuthorPosts
-
Yer LyMember
Genesis Simple sidebars doesn't seem to be working.
I have a Page that I created called Blog. I installed the Genesis Simple Sidebars plugin but when I edit the Blog Page and choose a different sidebar, it keeps showing the default sidebar.
I know it has something to do with front-page.php and home.php...
Yer LyMemberThe reason I want to remove it is because I want to replace it with a different sidebar. I don't want it full width.
Yer LyMemberRemove '.site-header .widget-area' from line 2110:
.content, .footer-widgets-2, .home-middle-3, .site-header .widget-area { width: 740px; }
Change 'width:740px' to 'width:auto' line 1101
.site-header .widget-area { float: right; text-align: right; width: 740px; }
Yer LyMemberIn your theme folder open up the "styles.css" file.
Find the following line of code:
.top-bar-right .widgettitle { text-align: right; }
After it, add the following:
.top-bar-right .textwidget { padding-top: 20px; }
Play around with the number 20 to get it correct.
Yer LyMemberChange this:
.site-header .widget { float: left; width: 90%; }
To this:
.site-header .widget { float: left; width: auto; }
Yer LyMemberIn your theme folder 'outreach-pro' open the file 'front-page.php', change the line of code:
//* Add home bottom widgets add_action( 'genesis_before_footer', 'outreach_home_bottom_widgets', 1 );
To the following:
//* Add home bottom widgets add_action( 'genesis_before_footer', 'outreach_home_bottom_widgets', 6 );
Yer LyMemberIn your theme folder "magazine-pro", there's a line of code that's forcing the front page to be Content/Sidebar.
Remove or comment out this line of code in the file "front-page.php".
add_filter( 'genesis_site_layout', '__genesis_return_content_sidebar' );
Yer LyMemberchange this line of code
.site-header .widget:last-child { width: 10%; }
change it to this
.site-header .widget:last-child { width: auto; }
-
AuthorPosts