• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Davinder Singh Kainth

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 2,178 total)
1 2 3 … 107 108 109 →
  • Author
    Posts
  • April 19, 2016 at 9:15 am in reply to: What we’ve been up to with Genesis #183936
    Davinder Singh Kainth
    Member

    Good portfolio you got there. Keep rocking!


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 28, 2016 at 12:50 pm in reply to: Parallax Pro – custom color #182388
    Davinder Singh Kainth
    Member

    Parallax 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 Themes

    March 28, 2016 at 12:47 pm in reply to: Atmosphere Pro Photos Not Responsive #182387
    Davinder Singh Kainth
    Member

    Looks 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 Themes

    March 23, 2016 at 2:00 pm in reply to: Creating different background colors to break page up #182124
    Davinder Singh Kainth
    Member

    Manual 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 Themes

    March 21, 2016 at 12:28 am in reply to: Just Lost All My Widgets! #181959
    Davinder Singh Kainth
    Member

    Generally 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 Themes

    March 20, 2016 at 9:22 am in reply to: Remove margin or padding in News Pro theme #181923
    Davinder Singh Kainth
    Member

    Welcome!


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 20, 2016 at 8:58 am in reply to: Remove margin or padding in News Pro theme #181921
    Davinder Singh Kainth
    Member

    Try this in style.css

    .content img {
        margin-bottom: -8px;
    }

    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 20, 2016 at 8:54 am in reply to: Effect on SEO to modify Category Structure #181920
    Davinder Singh Kainth
    Member

    By 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 Themes

    March 20, 2016 at 8:38 am in reply to: How to create space between blog post and footer #181919
    Davinder Singh Kainth
    Member

    Your 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 Themes

    March 19, 2016 at 2:23 am in reply to: How to create space between blog post and footer #181839
    Davinder Singh Kainth
    Member

    In 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 Themes

    March 19, 2016 at 2:21 am in reply to: Remove Title from Page Template – No Sidebar #181838
    Davinder Singh Kainth
    Member

    Why 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 Themes

    March 19, 2016 at 2:19 am in reply to: Set up blog posts like in demo of Atmosphere Pro #181837
    Davinder Singh Kainth
    Member

    Go to Genesis settings and select "content limit" option.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 16, 2016 at 8:06 am in reply to: How to Unfixed Header scroll #181547
    Davinder Singh Kainth
    Member

    Possible but would require fair bit of JS script.


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 15, 2016 at 7:09 am in reply to: How to Unfixed Header scroll #181455
    Davinder Singh Kainth
    Member

    1. 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 Themes

    March 15, 2016 at 7:07 am in reply to: Change Genesis Grid entry-title from H2 to P #181454
    Davinder Singh Kainth
    Member

    Strictly 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 Themes

    March 15, 2016 at 7:04 am in reply to: Genesis Sample Theme, need to adjust mobile settings #181453
    Davinder Singh Kainth
    Member

    Welcome Liz!


    Sunshine PRO genesis theme
    Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes

    March 14, 2016 at 8:27 am in reply to: Full Width Slider #181400
    Davinder Singh Kainth
    Member

    I 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 Themes

    March 14, 2016 at 8:25 am in reply to: Adding rel=share to featured image #181399
    Davinder Singh Kainth
    Member

    This 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 Themes

    March 14, 2016 at 8:23 am in reply to: Stock Photos Website #181398
    Davinder Singh Kainth
    Member

    That 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 Themes

    March 14, 2016 at 8:19 am in reply to: Genesis Sample Theme, need to adjust mobile settings #181397
    Davinder Singh Kainth
    Member

    Try 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

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 2,178 total)
1 2 3 … 107 108 109 →

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble