Forum Replies Created
-
AuthorPosts
-
Davinder Singh KainthMember
Good portfolio you got there. Keep rocking!
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberParallax theme has few pre-defined color styles found at "Color Styles" in Genesis > Theme Settings. http://my.studiopress.com/setup/parallax-theme/
For exact color modification, you need to manually edit style.css file.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberLooks like your are using Jetpack's photon module. Disable it and then check for the photo issue.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesMarch 23, 2016 at 2:00 pm in reply to: Creating different background colors to break page up #182124Davinder Singh KainthMemberManual method will require fair bit of code. Automatic method can be easy for you through "site origin page builder" https://wordpress.org/plugins/siteorigin-panels/
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberGenerally widgets are lost when new theme is activated or name of the current theme is changed.
Check your widgets in "inactive widgets" section at the bottom part of Widgets screen - few of them could be there.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberWelcome!
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberTry this in style.css
.content img { margin-bottom: -8px; }
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberBy default, category pages should be hidden from search engines because they contain summary of content from other posts / pages. Hence can be considered duplicate content.
Unless you want to make category pages open for search indexing, then you can go step further of changing url structure. On the face of it, you are just thinking too much about it. Keep tags and category pages away from search bots to stay in good shape as far SEO goes.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberYour site is in maintenance mode. Try following code
.single .site-inner, .archive .site-inner { margin-bottom: 40px; }
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberIn style.css file, change...
.site-inner { clear: both; margin-top: 40px; }
to...
.site-inner { clear: both; margin-top: 40px; margin-bottom: 40px; }
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberWhy take trouble of making template just to remove the title.
1. Use CSS method to hide page title.
2. Or remove it per page selectively using Genesis title toggle plugin -https://wordpress.org/plugins/genesis-title-toggle/
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberGo to Genesis settings and select "content limit" option.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberPossible but would require fair bit of JS script.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMember1. In style.css file.
change...
.site-header { background-color: #000; left: 0; min-height: 65px; position: fixed; top: 0; width: 100%; z-index: 999; }
to...
.site-header { background-color: #000; left: 0; min-height: 65px; top: 0; width: 100%; z-index: 999; }
2. Change...
.site-inner { clear: both; margin: 65px 0 40px; }
to...
.site-inner { clear: both; margin: 0 0 40px; }
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberStrictly from SEO point of view... one H1 and multiple (many) H2, H3... are fine.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberWelcome Liz!
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberI understand you are trying to display full width slider in "home-top" area. If yes, then remove wrap from that widget area.
In front-page.php file
Change this...
function enterprise_home_top_widgets() { genesis_widget_area( 'home-top', array( 'before' => '<div class="home-top widget-area"><div class="wrap">', 'after' => '</div></div>', ) ); }
to....
function enterprise_home_top_widgets() { genesis_widget_area( 'home-top', array( 'before' => '<div class="home-top widget-area">', 'after' => '</div>', ) ); }
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberThis can be good starting point - http://www.wprecipes.com/how-to-automatically-add-rellightbox-to-all-images-embedded-in-a-post
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberThat will require good amount of custom code.
You can use this theme as starting point - http://demo.studiopress.com/modern-studio/
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesDavinder Singh KainthMemberTry this code instead....
.home .content .entry-header, .home .content .entry-content { display: none; }
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes -
AuthorPosts