Forum Replies Created
-
AuthorPosts
-
Davinder Singh Kainth
MemberSample theme does support full width layout, like here http://demo.studiopress.com/layouts/fwc
Just goto Genesis > Theme Settings and select full width layout under "Default Layout" section. Regarding more custom look like in this http://gregrickaby.com/ website, you need to make lot of css style changes (no setting for that).
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
Member1. On homepage, h1 title is used for title of the website.
2. On inner pages or posts, h1 title is used for title of the page or post (not the website). h2 title is also used on pages or post for sub heading, you can manually add it by going text mode of editor and type <h2>Sub heading1</h2>
Coming to your website:
1. Inner page or post show correct h1 title - no need to worry there.
2. However your homepage is not showing website title in h1 tag. Goto Settings > General and there type your site title. You can also add in setting screen of yoast seo plugin that you are using as of now.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberIt is appearing fine both on homepage and inner pages. Make sure you are using full image url in the widget like: http://www.quantummarketer.com/wp-content/uploads/2013/04/traffic-growth-blueprint-banner-white-250x250.jpg
Regards
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberCheck these resources:
1. http://wordpress.org/extend/plugins/disable-feeds/
2. http://www.wprecipes.com/how-to-disable-rss-feeds-on-your-wordpress-blog
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberHi, following class in css style in the business area for right header widget
#header .widget-area {
float: right;
padding: 100px 0 0;
width: 560px;
}
Play around with padding values. You can use negative margin value to move down like margin: 0 0 -20px 0;
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
Member1. No follow tag is used for specific links. If you want to make specific weblink nofollow then use rel="nofollow" tag. Check this video - http://www.youtube.com/watch?v=660-ElmeE30
2. For posts, it is no index - which means post appears fine but Google does not index it in the search engine. For this open post in edit mode and look for no-index settings in genesis seo box at the bottom.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
Member1. Color code of the grey background is #f3f3f3
2. Change color in css style file here:
.focus-gray .menu,
.focus-gray #header .menu li a:active,
.focus-gray #header .menu li a:hover,
.focus-gray .wp-caption {
background-color: #f3f3f3;
}
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberGoto Widgets area and add required type of widgets in primary & secondary sidebar and other widget areas. Also make sure you change permalink structure as your current setting is not seo friendly.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesFebruary 12, 2013 at 5:49 am in reply to: News Theme – Colour of secondary navigation wording #19788Davinder Singh Kainth
MemberGlad issue is resolved.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesFebruary 11, 2013 at 8:31 am in reply to: Change Portfolio Page URL/permalinks – Executive Theme #19598Davinder Singh Kainth
MemberIf you are using portfolio page as explained here: http://www.briangardner.com/portfolio-page/
Then goto functions.php file and edit this line:
'rewrite' => array( 'slug' => 'portfolio' ), in the code displayed on the above page.
Change portfolio to projects as per your requirement.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesFebruary 11, 2013 at 8:28 am in reply to: News Theme – Colour of secondary navigation wording #19596Davinder Singh Kainth
MemberFor making similar changes in the secondary menu, edit background and color in this section:
#subnav li li a,
#subnav li li a:link,
#subnav li li a:visited
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesFebruary 11, 2013 at 8:26 am in reply to: News Theme – Colour of secondary navigation wording #19595Davinder Singh Kainth
MemberTo change color and background of items displayed in drop down sub menus, edit in this section of style.css file
#nav li li a,
#nav li li a:link,
#nav li li a:visitedAt present it has background image set:
background: url(images/bg-dark.png);and color of the text is white
color: #fff;
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberGlad this helped!
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberUse following in functions.php
// remove post meta on homepage
remove_action('genesis_after_post_content', 'genesis_post_meta');
add_action('template_redirect', 'child_conditional_actions');
function child_conditional_actions() {
if( is_single() ) {
add_action('genesis_after_post_content', 'genesis_post_meta');
}}
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberFollowing is recommended while upgrading (and using framework - child themes).
1. Always make design and other changes to your Child theme. Do not modify anything in the Genesis framework theme.
2. If you follow step 1 strictly, then during upgrade - customization done on your website through child theme will remain. As upgrade process only updates Genesis themes files and do not touch any child theme files.
Hope this brings some clarity on the issue.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberYou can set any existing post as sticky post. That post will appear at the top. Here is video for quick how-to http://www.youtube.com/watch?v=_gRyGQLob-w
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberTry this in functions.php file
// post info location change
remove_action('genesis_after_post_content', 'genesis_post_meta');add_action('template_redirect', 'child_conditional_actions');
function child_conditional_actions() {
if( is_single() ) {
add_action('genesis_before_post_title', 'genesis_post_meta');
}}
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberLook for this section in style.css
-------------------------
.menu-primary li a:active,
.menu-primary li a:hover,
.menu-primary .current_page_item a,
.menu-primary .current-cat a,
.menu-primary .current-menu-item a,
.menu-secondary li a:active,
.menu-secondary li a:hover,
.menu-secondary .current_page_item a,
.menu-secondary .current-cat a,
.menu-secondary .current-menu-item a,
#header .menu li a:active,
#header .menu li a:hover,
#header .menu .current_page_item a,
#header .menu .current-cat a,
#header .menu .current-menu-item a {
-moz-border-radius: 5px;
-moz-box-shadow: 0 1px 0 #333;
-webkit-border-radius: 5px;
-webkit-box-shadow: 0 1px 0 #333;
background-color: #000;
border-radius: 5px;
box-shadow: 0 1px 0 #333;
color: #fff;
}
---------------------------------------In above code remove "background-color: #000;"
If you want different colors, then use different code in place of #000 like you can use #dddddd or #eeeeee
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberFor this you can use Genesis simple hooks plugin. As such, this code addition is optional and is not required specially when using WordPress as post content is wrapped in content tags - which Google adsense code can easily understand.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh Kainth
MemberOverall website is neat and easy to read. However, for proper branding you should get radical 'out of the box' custom design look.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes -
AuthorPosts