Forum Replies Created
-
AuthorPosts
-
pxfortiParticipantpxfortiParticipant
Yes, that's probably why it's not working.
Look in theme functions.php for something like this:
/** Add support for custom header */
add_theme_support( 'genesis-custom-header', array(
'width' => 960,
'height' => 115
) );You can adjust the custom header to whatever you want.
writeNowDesign
WordPress and Ecommerce Website DesignOctober 14, 2013 at 9:22 am in reply to: Genesis Framework – Spacing between primary navigation menu #66657pxfortiParticipantpxfortiParticipantHi,
I created a custom portfolio page for my site based on the genesis original.
You can add or more content as you see fit and include categories if you want.
http://writenowdesign.com/blog/wordpress/how-to-build-a-portfolio-for-genesis-2-0/
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantyour image is 1000px. if you make it 960px it should be good. make sure the image is not cached.
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantYou can make it any width you want, but you might have to rewrite a lot of css to adjust for width change; eg, sidebar, main, header and footer code. It depends on whether widths are set in pixels or percents. If percents, they will probably adjust fine.
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantyour header is 960px by 323px wide. You need to make header image that size.
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantYour google author link is on your pages. Make sure you set up google plus so google knows you are a contributor to your website. Search google for instructions on how to do this.
writeNowDesign
WordPress and Ecommerce Website DesignOctober 14, 2013 at 8:57 am in reply to: Images not filling the full width in the Executive Pro Slider #66642pxfortiParticipantYour slider is 1140px by 445px; you need to make your image that size; keep in mind that part of the image is hidden behind the text.
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantif you add a subdomain like new.mysite.com, when you enter that url, it should look like this: http://new.mysite.com
If not, then subdomain is not set up correctly. you do not need to modify the .htaccess file to make this happen. Contact your host to determine the problem.
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantlooks like you figured it out. menu is all same color
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipanttry this:
.genesis-nav-menu .sub-menu a {
background: #fff;
}
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipant.content-sidebaralt #sidebar-alt, .sidebaralt-content #sidebar-alt {
width: 19%;
}
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantLooks like you got it fixed. I don't see any header text.
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantFinally figured this one out.
remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
I added a priority of 8 to the remove action, same as in the genesis post.php add_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantalso, css styles for archive navigation change names from .navigation to .archive-pagination
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantNote: I just commented out remove_action( 'genesis_entry_content', 'genesis_do_post_image' ); and there was no change.
It is possible that genesis_do_post_image has a bug and it not working because of that?
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantThis is what I used to figure it out:
http://www.studiopress.com/news/genesis-2-0-resources.htm
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantIn your theme's functions.php file, look for a line similar to this:
You can change the width and height there.
/** Add support for custom header */
add_theme_support( 'genesis-custom-header', array(
'width' => 1140,
'height' => 100
) );
writeNowDesign
WordPress and Ecommerce Website DesignpxfortiParticipantTerri,
There is already a background image in that folder called bg.png. That image is what creates the different colors and textures in the top of your site. If you open that file in photoshop or any image editor, you will see it's just a sliver that repeats across the page horizontally. If you change the header height, then things don't line up with the background image. You have to add 85px to the top of that image and make it black because the top part is already black. Make a backup of the original image first just in case you make a mistake or want to switch back
writeNowDesign
WordPress and Ecommerce Website Design -
AuthorPosts