Forum Replies Created
-
AuthorPosts
-
Both the left and right sides look the same to me
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
You need to upload your image file as logo.png to the theme’s images folder then choose Image Logo for the header in the Genesis Settings
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Featured Widget Amplified isn’t going to pull an image associated with a group of posts only individual post’s featrued images. You would need to use a text widget and place an image tag into that.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Yes it does. I recommend installing the Firebug add on for Firefox or using Chrome’s Firebug Lite which will enable you to right click on any element to inspect it and determine the associated style rules or the selectors required to create new style rules.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
It helps immensely if you include a link to your site with all questions. An image doesn’t provide enough information.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
I’m not seeing two images when clicking through to the actual individual post. I am seeing two images on the blog page. If you don’t want two images on archive pages(which includes the blog page) then you need to go to the Content Archives section of the Genesis settings panel and either deselect the post image option or set a content limit or choose the excerpt option.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
If you don’t want a custom link to the root domain then what is it you want?
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
You need to choose one of the primary sidebar layouts then apply the styling that you want to copy from the secondary sidebar to the primary sidebar.
It helps immensely if you include a link to your site with all questions and enter the theme you are using in the Tags box
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
You need to choose one of the primary sidebar layouts then apply the styling that you want to copy from the secondary sidebar to the primary sidebar.
It helps immensely if you include a link to your site with all questions.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
The site should be working now
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Then you need to edit the width of that element, #title-area a as well as #header .widget-area. I recommend installing the Firebug add on for Firefox or using Chrome’s Firebug Lite which will enable you to right click on any element to inspect it and determine the associated style rules or the selectors required to create new style rules.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
remove_action( ‘genesis_loop’, ‘genesis_do_loop’ ); is already included in home.php but then the grid loop is added so you need to remove the grid loop
add_action( ‘genesis_loop’, ‘eleven40_grid_loop_helper’ );
/** Add support for Genesis Grid Loop */
function eleven40_grid_loop_helper() {if ( function_exists( ‘genesis_grid_loop’ ) ) {
genesis_grid_loop( array(
‘features’ => 1,
‘feature_image_size’ => 0,
‘feature_image_class’ => ‘alignleft post-image’,
‘feature_content_limit’ => 0,
‘grid_image_size’ => ‘grid-thumbnail’,
‘grid_image_class’ => ‘alignnone’,
‘grid_content_limit’ => 250,
‘more’ => __( ‘[Continue reading]‘, ‘genesis’ ),
) );
} else {
genesis_standard_loop();
}}
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
-
AuthorPosts