Forum Replies Created
-
AuthorPosts
-
faisal
MemberThanks Victor,
When Checked the settings of Genesis I could see that in the content archive the featured image is enabled and the maximum size of image is 1024 x 1024.
So the question is why the homepage is not able to show the full images as their size is still smaller than this size.
Faisal
faisal
MemberThanks Victor,
Issue resolved
faisal
Memberok the issue got resolved as there was a conflicting plugin which i disabled
faisal
MemberTHANKS, Its done now
faisal
MemberThanks, clear now
I understand that I need to add this code to the end of CSS file ?
faisal
MemberThanks, in the screen shot, there is " Red" shown, when I change this color, it changes the color of all titles. What I want is to change only "About Me "
Am I missing something or selecting the wrong element ?
faisal
MemberThanks Lauren,
I tried hovering using Firebug but do not know how to reach to the above code ( ID for parent element) directly from screen. When I select " About Me" with hover tool. It takes me to .widgettitle only, instead of ID.
FAISAL
faisal
MemberThanks Dom,
I understand that I would need some plugin to export /import menus. Can you recommend some.
thanks,
Faisal
faisal
MemberThanks lynne,
it helped.
Faisal
faisal
MemberThanks,
I sent email over Contact ME form of your website.
rgds,
Faisal
faisal
MemberTHANKS,
Yes I have entered Google+ profile of personal in the Users ..profile and just now entered business google page in Genesis - SEO settings.
My business vanity Google plus profile is
https://plus.google.com/+Telecomlighthouse1/about
However the situation remains same.
faisal
Memberhi,
thanks
1, I have updated to latest Genesis
2. I had already Google plus account in the following formathttps://plus.google.com/u/0/104258987767005626071/posts
3 I am not using Yoast SEO plug in. ( only using Google Analytics Plugin)
4 I have added my website to both personal and google plus page.
Still the message I get is that authorship is not working for this webpage.
faisal
MemberThanks, it worked. What is the purpose of the following code ?
.title-area {
float: left;
width: 320px;
}
--------------------------------------------------------------------------------faisal
Memberthanks i made features=0 and I only see archives on homepage. However am still not able to have alignment of text the way I desire. just to give more explanation. i need my format of featured image and the text that follows to be similar to something as on the following website.
faisal
Memberthanks,
which code do I need to change. i am pasting the home code below
//* Add Genesis grid loop
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'eleven40_grid_loop_helper' );
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-featured',
'grid_image_class' => 'grid-featured',
'grid_content_limit' => 250,
'more' => __( '[Continue reading]', 'eleven40' ),
) );
} else {
genesis_standard_loop();
}}
//* Run the Genesis loop
genesis();faisal
MemberThanks,
Before I attempt to use the code, is there a way that I display all posts on homepage as content archives. This might solve the issue as well, as I dont need to see featured images on single posts.
faisal
MemberI have already dont this setting but still image not visible. here are my content archive settings under genesis
select of the following > display post content
limit content to > 0 character
include feature image ( chkd)
image alignment > left
select post navigation tehnique > NumericStill I can not see in the most recent blog but i only see it in old blogs
faisal
MemberI did not use any code for the featured images. why I am not able to see featured image in most recent blog, how can i enable it ?
faisal
MemberThanks,
If possible tell me further on detail of this code. Or else point me to a resource to explain this further.
regards,
Faisal
faisal
MemberI try putting link, but it gets deleted, so I am copying pasting the contents here.
................................................................................................
<?php
/** Start the engine */
require_once( get_template_directory() . '/lib/init.php' );/** Child theme (do not remove) */
define( 'CHILD_THEME_NAME', 'eleven40 theme' );
define( 'CHILD_THEME_URL', 'http://www.studiopress.com/themes/eleven40' );/** Add Viewport meta tag for mobile browsers */
add_action( 'genesis_meta', 'eleven40_viewport_meta_tag' );
function eleven40_viewport_meta_tag() {
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0"/>';
}/** Add new image sizes */
add_image_size( 'grid-thumbnail', 270, 100, TRUE );/** Create additional color style options */
add_theme_support( 'genesis-style-selector', array(
'eleven40-blue' => 'Blue',
'eleven40-green' => 'Green',
'eleven40-red' => 'Red'
) );/** Add support for structural wraps */
add_theme_support( 'genesis-structural-wraps', array(
'header',
'nav',
'subnav',
'inner',
'footer-widgets',
'footer'
) );/** Add the page title section */
add_action( 'genesis_before_content_sidebar_wrap', 'eleven40_page_title' );
function eleven40_page_title() {
genesis_widget_area( 'page-title', array(
'before' => '<div class="page-title widget-area">',
) );
}/** Add the after post section */
add_action( 'genesis_after_post_content', 'eleven40_after_post' );
function eleven40_after_post() {
if ( ! is_singular( 'post' ) )
return;
genesis_widget_area( 'after-post', array(
'before' => '<div class="after-post widget-area">',
) );
}/** Add 3-column footer widgets */
add_theme_support( 'genesis-footer-widgets', 3 );/** Register widget areas */
genesis_register_sidebar( array(
'id' => 'page-title',
'name' => __( 'Page Title', 'eleven40' ),
'description' => __( 'This is the page title section.', 'eleven40' ),
) );
genesis_register_sidebar( array(
'id' => 'after-post',
'name' => __( 'After Post', 'eleven40' ),
'description' => __( 'This is the after post section.', 'eleven40' ),
) ); -
AuthorPosts