• 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 - 41 through 60 (of 2,178 total)
← 1 2 3 4 … 107 108 109 →
  • Author
    Posts
  • January 26, 2016 at 1:31 pm in reply to: Reposition slide executive pro #177601
    Davinder Singh Kainth
    Member

    Private replies are only visible to forum moderator.

    If you wish to send private message, email it.


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

    January 22, 2016 at 8:14 am in reply to: Reposition slide executive pro #177173
    Davinder Singh Kainth
    Member

    To re-position, you need to modify code in front-page.php

    More easier method would be creating a new widget area and use that for slider.
    http://www.basicwp.com/add-new-widget-genesis-homepage/


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

    January 19, 2016 at 1:16 pm in reply to: Plugins on seo #176943
    Davinder Singh Kainth
    Member

    If you install an SEO plugin, Genesis SEO settings are disabled by default and allows plugin to take over.


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

    January 19, 2016 at 12:16 am in reply to: Altitude Pro: front page background images #176895
    Davinder Singh Kainth
    Member

    Here... rgba(0,0,0,0.2)

    0,0,0 is code for black color
    0.2 is opacity value.

    For white one would use

    rgba(255,255,255,0.2)

    Got it?


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

    January 18, 2016 at 9:32 am in reply to: nav on mobile issue #176864
    Davinder Singh Kainth
    Member

    In style.css file

    change...

    .responsive-menu-icon {
        cursor: pointer;
        display: none;
        margin-bottom: 10px;
        text-align: center;
    }

    to...

    .responsive-menu-icon {
        cursor: pointer;
        display: none;
        margin-bottom: 30px;
        text-align: center;
    }

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

    January 18, 2016 at 9:29 am in reply to: Decreasing gap between content area and footer #176863
    Davinder Singh Kainth
    Member

    Looks like you got that working?


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

    January 18, 2016 at 9:28 am in reply to: center content on page #176862
    Davinder Singh Kainth
    Member

    In style.css file

    change...

    .site-inner {
        clear: both;
        margin-top: 77px;
        padding: 10% 45px;
        padding-bottom: 10px;
    }

    to...

    .site-inner {
        clear: both;
        margin-top: 77px;
        padding: 10% 5%;
        padding-bottom: 10px;
    }

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

    January 18, 2016 at 9:25 am in reply to: Just wanted to say Thank You! #176860
    Davinder Singh Kainth
    Member

    Welcome to the Genesis club. Glad you are liking it!


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

    January 18, 2016 at 9:22 am in reply to: Altitude Pro: front page background images #176855
    Davinder Singh Kainth
    Member

    1. To remove black tint. In style.css file:

    change...

    .image-section {
    	background: -moz-linear-gradient(top,  rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.9) 100%);
    	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.2)), color-stop(30%,rgba(0,0,0,0.5)), color-stop(80%,rgba(0,0,0,0.8)), color-stop(100%,rgba(0,0,0,0.9)));
    	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%);
    	background: -o-linear-gradient(top,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%);
    	background: -ms-linear-gradient(top,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%);
    	background: linear-gradient(to bottom,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%);
    	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#e6000000',GradientType=0 );
    	display: table;
    	overflow: hidden;
    	table-layout: fixed;
    	width: 100%;
    }

    to...

    .image-section {
    	display: table;
    	overflow: hidden;
    	table-layout: fixed;
    	width: 100%;
    }

    2, Check functions file for code used for other widgets areas. Duplicate it as per requirement.


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

    January 18, 2016 at 9:18 am in reply to: Instructions for updating to Genesis 2.2.6 #176854
    Davinder Singh Kainth
    Member

    Have you tried clicking "Updates" button under "home"?

    If still does not work:
    1. Check with WPEngine support, their hosting config may be blocking update notification.
    2. Last resort is manual update via ftp.


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

    January 18, 2016 at 9:16 am in reply to: SEO #176853
    Davinder Singh Kainth
    Member

    Definitely no-index them. I personally always do that.


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

    January 11, 2016 at 9:01 am in reply to: Comment not showing on genesis theme #176223
    Davinder Singh Kainth
    Member

    I do see "disqus" comment form loading fine here - https://problogid.com/memulai-dengan-wordpress/


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

    January 11, 2016 at 9:00 am in reply to: SEO #176222
    Davinder Singh Kainth
    Member

    Normally, category pages and tag pages are no-index. No issue with that.

    I thought you were referring to sub-page of a page, no need to "no index" that. But now I understand, you were not referring to that 😉


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

    January 10, 2016 at 6:37 am in reply to: Instructions for updating to Genesis 2.2.6 #176136
    Davinder Singh Kainth
    Member

    You should see update notification in WP Dashboard at the top. If not, go to Home > Updates and click "Check Again" button

    Screenshot below:


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

    January 10, 2016 at 6:31 am in reply to: Magazine Pro Theme Home Middle Widget Space #176134
    Davinder Singh Kainth
    Member

    Change this...

    .home-middle .featured-content .entry {
        border-bottom: 2px solid #eee;
        width: 20%;
        padding: 0 1%;
    }

    to...

    .home-middle .featured-content .entry {
        width: 19%;
        padding: 1%;
        margin: 0.5%;
        border: solid 1px #ccc !important;
    }
    
    .home-middle .featured-content .entry:hover {
        background: #ddd;
    }

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

    January 10, 2016 at 2:32 am in reply to: Magazine Pro Theme Home Middle Widget Space #176115
    Davinder Singh Kainth
    Member

    Step 1. Change...

    .home-middle .featured-content .entry:nth-of-type(6n+1) {
        clear: left;
        margin-right: 20px;
    }

    to...

    .home-middle .featured-content .entry:nth-of-type(6n+1) {
        clear: left;
    }

    Step 2. Change...

    .home-middle .featured-content .entry {
        width: 130px;
        border-bottom: 2px solid #eee; 
    }

    to...

    .home-middle .featured-content .entry {
        border-bottom: 2px solid #eee;
        width: 20%;
        padding: 0 1%;
    }

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

    January 10, 2016 at 2:27 am in reply to: SEO #176114
    Davinder Singh Kainth
    Member

    It depends on the content of sub pages. If they have unique content, then why no-index them?


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

    January 10, 2016 at 2:26 am in reply to: Instructions for updating to Genesis 2.2.6 #176113
    Davinder Singh Kainth
    Member

    Just click the update button to install Genesis theme update. Update won't affect any customization / changes that you may have done to the child theme - it only changes / affects the main parent Genesis Framework theme.


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

    January 9, 2016 at 6:56 am in reply to: Change logo positioning in Altitude Pro #176053
    Davinder Singh Kainth
    Member

    I haven't explored that theme in detail. However, I understand that theme registers two menu areas: left and right side of the header. These menus are merged automatically when site is viewed in mobile view. Check the functions.php file for the relevant code. This involves php stuff besides css for styling.


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

    January 7, 2016 at 2:05 pm in reply to: Hello from Australia #175888
    Davinder Singh Kainth
    Member

    Glad you like it 🙂


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

  • Author
    Posts
Viewing 20 posts - 41 through 60 (of 2,178 total)
← 1 2 3 4 … 107 108 109 →
« Previous Page

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