• 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

vividvilla

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 21 total)
1 2 →
  • Author
    Posts
  • January 9, 2014 at 2:32 pm in reply to: Align Featured image to the right in Category page #84239
    vividvilla
    Member

    Link to your website will be immensely helpful to look after the solution.

    Thank You


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    January 9, 2014 at 2:30 pm in reply to: Introduction #84238
    vividvilla
    Member

    Hi steve,

    Welcome to the Genesis community, You will enjoy your stay here 🙂


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    January 9, 2014 at 2:28 pm in reply to: Fixed / Sticky Sidebar #84237
    vividvilla
    Member

    You can make the sidebar stick with this plugin - http://wordpress.org/plugins/q2w3-fixed-widget/


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    January 9, 2014 at 2:24 pm in reply to: Jumping instead of Scrolling #84235
    vividvilla
    Member

    To achieve smooth scrolling follow these steps

    1. Add the following jQuery file to your child-theme-directory/js/ folder as smooth-scroll.js - https://gist.github.com/vividvilla/8341205/raw/1f97beb0b7c5d965996faef22baea61a4435e612/smooth-scroll.js

    2. To enqueue the jQuery file, Add the following code to your functions.php file.

    function add_smooth_scroll() {
      wp_register_script( 'smoothscroll', get_template_directory_uri() . '/js/smooth-scroll.js', array('jquery'), '1.0.0', true );
      wp_enqueue_script('smoothscroll');
    }
    add_action( 'wp_enqueue_scripts', 'add_smooth_scroll' ); 

    3. FInally add the class .scroll to the button link like

    <a href="#home-middle" class="button scroll">Under Construction</a>

    Thats it.


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    January 9, 2014 at 2:12 pm in reply to: Theme Recommendations for e-Commerce Site? #84233
    vividvilla
    Member

    Try Ayoshop. Its FREE, clean and responsive Genesis child theme for WooCommerce.

    Demo - http://demo.ayothemes.com/ayoshop/
    Download - http://designmodo.com/free-wordpress-theme/


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    January 9, 2014 at 2:06 pm in reply to: White Background Container #84232
    vividvilla
    Member

    Add background color and border to #wrap ID in style.css file.

    #wrap {
    margin: 0 auto;
    width: 960px;
    background: #fff;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    }

    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 14, 2013 at 12:20 am in reply to: Header left and right widgets in Balance Theme #45820
    vividvilla
    Member

    Hi the solution is simple.In the left and right sidebar added only in home.php.So what you can do is move that function to functions.php.So add the following code in your functions.php

    add_action( 'genesis_before_content_sidebar_wrap', 'balance_home_loop_helper' );
    
    function balance_home_loop_helper() {
    
    if ( is_active_sidebar( 'home-featured-left' ) || is_active_sidebar( 'home-featured-right' ) ) {
    echo '<div id="home-featured"><div class="wrap clearfix">';
    
    echo '<div class="home-featured-left">';
     dynamic_sidebar( 'home-featured-left' );
    
    echo '</div><!-- end .home-featured-left -->';
    
    echo '<div class="home-featured-right">';
    
     dynamic_sidebar( 'home-featured-right' );
    
    echo '</div><!-- end .home-featured-right -->';
    
    echo '</div><!-- end .wrap --></div><!-- end #home-featured -->';    }}

    If you are not using homepage then delete home.php file.


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 14, 2013 at 12:07 am in reply to: Remove post date #45819
    vividvilla
    Member

    Add this code in functions.php

    /** Customize the post info function */
    add_filter( 'genesis_post_info', 'post_info_filter' );
    function post_info_filter($post_info) {
    if (!is_page()) {
    $post_info = 'Written by  [post_author_posts_link]  [post_comments]  [post_edit]';
    return $post_info;
    }
    }


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 14, 2013 at 12:01 am in reply to: Minimum theme landing page with no blog post #45818
    vividvilla
    Member

    Hi Beeke,You need to remove the Blog Post loop from home.php file.Remove this code

    add_action( 'genesis_loop', 'minimum_grid_loop_helper' );
    function minimum_grid_loop_helper() {

    if ( function_exists( 'genesis_grid_loop' ) ) {
    genesis_grid_loop( array(
    'features' => 0,
    'feature_image_size' => 'featured',
    'feature_image_class' => 'post-image',
    'feature_content_limit' => 0,
    'grid_image_size' => 0,
    'grid_image_class' => 'alignnone',
    'grid_content_limit' => 250,
    'more' => __( '[Read more]', 'minimum' ),
    ) );
    } else {
    genesis_standard_loop();
    }


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 13, 2013 at 6:13 am in reply to: Adding a new custom widget #45644
    vividvilla
    Member

    I think the solution is to use Negative Margins.If anybody have better option please share it.


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 12, 2013 at 2:31 am in reply to: Logo not linking #45406
    vividvilla
    Member

    Hi michaelwolsey,

    You have used a header image and the title is hidden in CSS.This is how your website looks when Title is visible.Your designer has done a poor job.

    You need to change the class
    .header-image #title-area,
    .header-image #title,
    .header-image #title a {

    }

    and the add your log as a background to .header-image #title-area


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 12, 2013 at 2:09 am in reply to: Lifestyle theme. Adding text space above posts in Category Posts in Page #45405
    vividvilla
    Member

    Can you point out where exactly you want empty space..A screenshot will be better


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 12, 2013 at 2:02 am in reply to: Please help with navigation hook #45404
    vividvilla
    Member

    Hi Danny,I hope this will be helpful

    http://www.carriedils.com/move-header-footer-genesis/948/

    http://www.carriedils.com/customize-genesis-move-header/

    i dont know whether this exactly solves your problem but can certainly help you.


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 10, 2013 at 10:12 pm in reply to: Category archive in excerpt format #45174
    vividvilla
    Member

    For that only I said to create a new blog page template and assign it to your current blog page.


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 10, 2013 at 7:44 am in reply to: Social counter in sidebar #45017
    vividvilla
    Member

    Here is one of the best tutorial - http://www.wpsquare.com/display-facebook-twitter-rss-counts-plain-text/

    He did not style the widget so you need to do it yourself.


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 10, 2013 at 7:34 am in reply to: First Genesis Child Theme #45013
    vividvilla
    Member

    Bang...Very professional.I love it..keep it up.


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 10, 2013 at 7:33 am in reply to: My 1st try – please rate (Blognews) #45012
    vividvilla
    Member

    Looks cool,A perfect start.As mentioned by susan you can stripe the second sidebar and give more space for content.

    One thing I found annoying is the text are not clickable,I understand the need but that leaves me bad impression.


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 10, 2013 at 7:25 am in reply to: News site, in progress, feedback? #45010
    vividvilla
    Member

    Looks like the Youtube Video is not responsive follow this tutorial - http://www.studiopress.community/topic/tip-how-to-make-youtube-videos-responsive

    The Yellow color used on Buttons doen't loog good try this color #febf00 keeping the menu color slight gray #444444


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 10, 2013 at 7:12 am in reply to: Category archive in excerpt format #45007
    vividvilla
    Member

    What you can do is create another Page template and loop through the posts.Create a new page named blog and assign newly created page template.Now for category go to Genesis Theme settings and modify the settings for blog template and activate thumbnail.

     


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

    June 10, 2013 at 7:07 am in reply to: Edit Post Meta [Add a line after each post on all pages ] #45004
    vividvilla
    Member

    Hi Add the following code at the end of your  style.css file

    .post-meta {
    border-bottom: 2px solid #999;
    padding-bottom: 20px;
    }

    You can change the border color by changing hex code #999


    Vivek R – @vividvilla
    Genesis Child Theme Designer and Blogger at WPStuffs.
    For affordable Genesis Child Theme design and Customization Contact me here

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 21 total)
1 2 →

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 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