• 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

ᴅᴀᴠɪᴅ

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 - 61 through 80 (of 326 total)
← 1 2 3 4 5 … 15 16 17 →
  • Author
    Posts
  • June 23, 2017 at 4:58 pm in reply to: Submenu items disappear on mouseover #208213
    ᴅᴀᴠɪᴅ
    Member

    OK, now I can see what's causing it.

    the site-header has a position relative at around line 1177 in your stylesheet. This is causing it to be in front of the sub-menu. If you remove that it should work. i don't know why that is there.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 23, 2017 at 4:44 pm in reply to: Submenu items disappear on mouseover #208211
    ᴅᴀᴠɪᴅ
    Member

    you don't want to do that. It will mean the title is not clickable and also will hide the fixed header as well.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 23, 2017 at 4:25 pm in reply to: How to Force Full-Width Blog Posts in Altitude Pro #208209
    ᴅᴀᴠɪᴅ
    Member

    No worries!


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 23, 2017 at 4:16 pm in reply to: How to Force Full-Width Blog Posts in Altitude Pro #208205
    ᴅᴀᴠɪᴅ
    Member

    If you just want to remove the sidebar from some specific blog posts, you can just change the layout of any post or page from within with post edit screen itself. Choose full width for the posts you want.

    If you want this for EVERY post, automatically. Then you'd need to add some code to override the settings.

    So to do this you'd add this code to your functions.php file...

    //* Change layout for single posts
    add_filter( 'genesis_site_layout', 'themeprefix_single_layout' );
    function themeprefix_single_layout() {
        if( is_singular('post') ) {
            return 'full-width-content';
        }
    }

    This will make sure that every single post has a full width layout and therefore no sidebars.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 23, 2017 at 4:11 pm in reply to: Media Query Breakpoint Adjustment #208203
    ᴅᴀᴠɪᴅ
    Member

    You just change it where you see it the style.css, so just delete '782px' and replace with '767px'.

    There are no updates for StudioPress child themes, only the parent theme Genesis is updated, so don't worry - you won't lose the customization.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 23, 2017 at 4:07 pm in reply to: Making a Widget Display Featured Posts like Agency Pro #208201
    ᴅᴀᴠɪᴅ
    Member

    The way it is done on agency pro is that the .featured-content .entry is position: relative and the image is position: absolute; This is the key to the entry-header and entry-content to sit behind the image like it does.

    On hover, the image reduces it's opacity and the content becomes visible.

    You'll find the exact CSS from about line 1300 in the style.css in agency pro. If you don't understand the CSS, then I don't know how to help.

    Good luck!


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 23, 2017 at 3:59 pm in reply to: Submenu items disappear on mouseover #208200
    ᴅᴀᴠɪᴅ
    Member

    it's working fine from what I can see.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 23, 2017 at 3:57 pm in reply to: Infinity Pro – reduce the white space between sections #208199
    ᴅᴀᴠɪᴅ
    Member

    so look in infinity-pro/css/style-front.css and look for .front-page-2 and .front-page-2 and .front-page-2 etc. Change the padding amount for each one.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 23, 2017 at 3:51 pm in reply to: Infinity Pro – reduce the white space between sections #208198
    ᴅᴀᴠɪᴅ
    Member

    The padding on the front page sections is currently set to padding-bottom: 180px; and padding-top: 170px; If you reduce this, then the amount of white space above and below the content in each section will reduce.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 23, 2017 at 1:00 am in reply to: Remove link on featured image? #208154
    ᴅᴀᴠɪᴅ
    Member

    If you just want to deactivate the link, you can always just use CSS to stop the link from being able to be clicked. eg

    .ez-home-bottom .featuredpage .entry > a {
        pointer-events: none;
    }

    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 22, 2017 at 8:29 pm in reply to: Help with CSS for Primary Nav Menu font color when on sub-page #208149
    ᴅᴀᴠɪᴅ
    Member

    Yes, there is a class for this automatically added by WordPress. 'current-menu-ancestor'.

    So, adding;

    .executive-pro-red .genesis-nav-menu .current-menu-ancestor a {
        color: #e04b4b;
    }

    will do what I think you want.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 22, 2017 at 8:23 pm in reply to: Making a Widget Display Featured Posts like Agency Pro #208148
    ᴅᴀᴠɪᴅ
    Member

    The easiest way would be to create a new widget area on the front page of monochrome pro, with the same markup as the one in Agency Pro (so name it home-middle, or home-bottom, whichever one you're talking about - just take it from the functions.php file) Then copy and paste the styling from that home page widget area from agency pro to your Monochrome Pro stylesheet. Then you can add the featured content like you would with agency pro and it should look pretty much the same.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 22, 2017 at 8:18 pm in reply to: Changing color in Footer Widget – DigitalPro theme #208145
    ᴅᴀᴠɪᴅ
    Member

    As Victor said before...

    "If you look at the demo, the Digital Pro theme is designed to display the accent color in footer-widget-1 only"

    What you're trying to do requires a bit of work, as the theme is setup in a way that means customizing the footer-1 widget from the customizer screen inside the WordPress dashboard. To change this, you'd have to amend the customizer.php file.

    If you're just wanting to change the fonts inside the footer, you'd add something like this

    .footer-widgets {
        font-family: lato;
        font-size: 18px;
    }

    For future reference, you may want to read this post , which teaches you how to find the bit of the stylesheet you need to change to make simple changes like this.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 22, 2017 at 8:13 pm in reply to: Refined Pro: Removing Site Wide CTA widget on a new landing_signup.php template #208143
    ᴅᴀᴠɪᴅ
    Member

    The function 'refined_site_wide_cta' makes that widget area appear on every page apart from the home page. So to remove it on that template add this to the template file;

    //* Remove site wide CTA
    remove_action( 'genesis_before_footer', 'refined_site_wide_cta', 8 );

    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 21, 2017 at 3:47 pm in reply to: How to display retina images #208049
    ᴅᴀᴠɪᴅ
    Member

    To make sure an image is crisp on retina, it needs to be 2x the size. So if the image appears as 300x300 on the screen, it needs to be a 600x600 image.

    WP Retina 2X is a decent plugin, which automatically makes a 2x copy of each image size then shows the larger image only to retina displays. This is ideal as you don't want to be loading larger images when not neccessary.

    As for the background images, this will be controlled by the theme, some themes show full size images as backgrounds, in which case it's up to you to upload the correct size image.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 21, 2017 at 12:11 am in reply to: Help needed! Font on homepage of Atmosphere pro is huge #208018
    ᴅᴀᴠɪᴅ
    Member

    This has either been put into the functions.php, or if your using the genesis simple edits plugin, it will be inside there.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 21, 2017 at 12:11 am in reply to: Help needed! Font on homepage of Atmosphere pro is huge #208017
    ᴅᴀᴠɪᴅ
    Member

    it's because the copyright text is wrapped in font-size=300.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 20, 2017 at 6:35 pm in reply to: Changing color in Footer Widget – DigitalPro theme #208009
    ᴅᴀᴠɪᴅ
    Member

    If you're wanting to change the style of the theme, look inside the stylesheet (style.css)

    There you'll find the CSS that creates the layout. Go to the Footer Widgets section and you'll find

    .footer-widgets-1 {
    	background-color: #e85555;
    	text-align: right;
    	width: 25%;
    }
    
    .footer-widgets-2 {
    	text-align: left;
    	width: 39.8%;
    }
    
    .footer-widgets-3 {
    	padding-left: 0;
    	text-align: left;
    	width: 35%;
    }

    Just change the percentages to all be 33.333% for equal columns or to however you want it.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 20, 2017 at 6:29 pm in reply to: Same Infinitu menu feature/behavior in Atmosphere Theme #208008
    ᴅᴀᴠɪᴅ
    Member

    You need to enqueue the js file that you have created inside the theme's functions.php file.

    Also, I looked in your style.css and I could not find the CSS that would make the header change color on scroll.

    It will be something like this...

    .site-container.white .site-header {
         background-color: white;
    }

    so when the white class is added to site-container (which is what your global.js file does) then the site header will have a white background.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

    June 20, 2017 at 5:53 pm in reply to: centric pro navigation modify for phones #208007
    ᴅᴀᴠɪᴅ
    Member

    You just need to change the menu items from being 'inline-block', to 'block' for smaller screens.

    So inside the CSS, inside the correct media query that you want to target, add

    .genesis-nav-menu .menu-item {
         display: block;
    }

    You could also change the text-align to center so the items appear directly underneath the buttons.


    I love helping creative entrepreneurs build epic things with WP & Genesis.

    Follow on Twitter

  • Author
    Posts
Viewing 20 posts - 61 through 80 (of 326 total)
← 1 2 3 4 5 … 15 16 17 →
« Previous Page

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