• 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

Baz

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 28 total)
1 2 →
  • Author
    Posts
  • November 24, 2020 at 11:30 am in reply to: How to create a copyblogger style homepage? #502053
    Baz
    Participant

    It's very possible using the latest Sample theme.

    Here is a good example. Please be aware that this is a paid membership site

    https://designody.com/copyblogger-style-post-grid-layout-in-genesis/

    November 24, 2020 at 11:18 am in reply to: What happened to Business Pro & Corporate Pro Themes? #502052
    Baz
    Participant

    SEO Themes is now part of Bizbudding - creators of Mai Themes. Themes by SEO Themes (Business Pro, Corporate Pro, Studio Pro) have now been updated to work with Mai Themes.

    https://bizbudding.com/product-category/classic-themes/seo-themes-classic/

    You should see the latest themes in your downloads area.

    October 29, 2020 at 9:20 am in reply to: Center Logo & Menu imposible! :( #501654
    Baz
    Participant

    You need to adjust the CSS for the logo and menu to centre align both.

    Here is a really good guide which still works with the latest sample theme.

    Center Logo and Menu in Genesis Sample 2.6

    🙂

    October 29, 2020 at 9:08 am in reply to: Failed Migration from Atomic Blocks to Genesis Blocks #501653
    Baz
    Participant

    Are you using the latest version 1.1.1 which was updated a few hours ago?

    1.1.1
    Fixed an issue for sites migrating from Atomic Blocks where in some cases the migration did not complete due to an error when deactivating the Atomic Blocks plugin.

    August 13, 2020 at 7:26 am in reply to: Genesis Pro for ProPlus Customers? #500551
    Baz
    Participant

    Thanks RavenManiac for this thread, and kudos to David for taking time to respond.

    As a Pro Plus member for over 5 years, I too share some of the concerns raised by RavenManiac. The information about what the move to Genesis Pro for existing Studio Press customers was thin and lacking from WPEngine.

    One of my main concerns is what happens to custom websites built with Genesis 3.0?

    Will Genesis 4.0+ and Genesis Pro be backward compatible for those users who are unable (or cannot afford) to update their sites to use Genesis Pro?

    It is bad enough to second-guess what the next Gutenberg update will do to your new website, now we have to contend with what Genesis will do too! 🙂

    Regards,
    Baz

    June 15, 2020 at 4:03 am in reply to: Academy Pro Background Color #499293
    Baz
    Participant

    Hello Kerissa,

    The CSS to change the angled background color is in style.css (from line 815).

    .site-inner::before {
    	content: "";
    	background-color: #f5f5f5;
    	height: 50%;
    	position: absolute;
    	transform: skewY(-5deg);
    	top: 120px;
    	width: 100%;
    	z-index: -1;
    }
    
    .site-inner::after {
    	bottom: 100px;
    	background-color: #f5f5f5;
    	content: "";
    	height: 50%;
    	position: absolute;
    	transform: skewY(-5deg);
    	width: 100%;
    	z-index: -1;
    }

    Just change 'background-color: ' to your choice of colors.

    May 21, 2020 at 11:50 am in reply to: Academy Pro: Pricing Table #498889
    Baz
    Participant

    Try adding this to your style.css:

    .pricing-table .one-half {
        width: 100%;
    }

    Let me know if that helps 🙂

    Baz

    February 28, 2020 at 11:03 am in reply to: Footer Widgets on the Essence Pro Theme #497032
    Baz
    Participant

    @di, try this to add a 3 widget footer area to the Essence Pro theme.

    Step 1 - Add support for a 3 widget footer area by adding the following code in functions.php:

    // Add theme support for 3-column footer widgets
    add_theme_support( 'genesis-footer-widgets', 3 );
    
    // Reposition Footer Widgets area
    remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );
    add_action( 'genesis_before_footer', 'genesis_footer_widget_areas', 25 );

    Step 2 - Style the footer widget area by adding the following code in style.css:

    /* Add Footer Widget Area
    ---------------------------------------------------------------------------------------------------- */
    
    .footer-widgets {
            background-color: #fff;
    	color: #333;
    	padding: 60px 0;
    }
    
    .footer-widgets .widget-title {
    	font-size: 36px;
    	font-size: 3.6rem;
    }
    
    .footer-widgets-1,
    .footer-widgets-2 {
    	width: 30%;
    	float: left;
    }
    
    .footer-widgets-1,
    .footer-widgets-2 {
    	margin-right: 25px;
    }
    
    .footer-widgets-3 {
    	float: right;
    	width: 30%;
    }
    
    .footer-cta {
    	margin-bottom: 40px;
    }
    
    @media only screen and (max-width: 860px) {
    	.footer-widgets-1,
    	.footer-widgets-2,
    	.footer-widgets-3 {
    		float: none;
    		padding: 30px 10px;
    		width: 100%;
    	}
    	
    }

    Adjust the above styles to meet your requirements.

    February 10, 2020 at 3:20 pm in reply to: Delete the X in the Academy Pro Top Banner #496624
    Baz
    Participant

    Apologies, that code was from a customized theme. Replace 'start' with 'academy' for the original theme.

    line: 2432

    #academy-top-banner-close {
    	display: none;
    }

    line: 2906

    @media only screen and (max-width: 860px)
    .academy-top-banner {
        padding: 20px 80px 20px 5%;
    }
    February 10, 2020 at 3:06 pm in reply to: Delete the X in the Academy Pro Top Banner #496623
    Baz
    Participant

    Add this towards the end of style.css to hide the 'X', or edit the existing "#start-top-banner-close" line:

    #start-top-banner-close {
    	display: none;
    }

    You can then adjust/delete the padding to center align the banner text e.g.

    @media only screen and (max-width: 860px)
    .start-top-banner {
        padding: 20px 80px 20px 5%;
    }
    February 9, 2020 at 5:08 pm in reply to: Navigation Pro. Please help me style the text underneath an IMG #496592
    Baz
    Participant

    That's the 'figcaption'. Try using less text, or better still, make the image full width.

    You can see some of the code used when you inspect it using your browser:

    .site-container .wp-block-image figcaption {
        margin-bottom: 30px;
        margin-top: 25px;
        width: 100%;
    }

    Try adding 'line-height: 1;'

    .site-container .wp-block-image figcaption {
        margin-bottom: 30px;
        margin-top: 25px;
        line-height: 1;
        width: 100%;
    }
    February 9, 2020 at 4:56 pm in reply to: Cafe Pro in IE #496591
    Baz
    Participant

    "Your client needs to move into the 21st century."

    Ha ha, very true comment!

    Even Microsoft with all their money have decided to finally move into the 21st century by ditching their current browser engine, and developing the new Microsoft browser using Chromium.

    Hopefully this will resolve most future cross browser compatibility issues.

    February 7, 2020 at 5:48 am in reply to: Moving the search results title #496530
    Baz
    Participant

    Just to add to my original query, I want to move the 'Search results for:' title from it's current position to before the header. I know how to use the 'remove_action'/'add_action' filter but don't know how to target the search title.

    October 29, 2019 at 3:06 pm in reply to: Time frame for existing StudioPress theme updates? #494313
    Baz
    Participant

    Thanks @anita

    I did contact support a while back but just got a generic response i.e 'All our themes work with the current version of Genesis'.

    July 29, 2019 at 6:06 am in reply to: Center Footer Widgets Sample Theme #492650
    Baz
    Participant

    You just need add 'text-align: center' to the 'footer-widgets' code in style.css

    For example, in Genesis Sample 3.0, look for the footer-widgets code in line 1405 and add 'text-align: center':

    .footer-widgets {
    border-top: 1px solid #eee;
    background-color: #fff;
    clear: both;
    padding: 60px 0;
    text-align: center;
    }

    July 1, 2019 at 9:51 am in reply to: Decision to select a host #492048
    Baz
    Participant

    If you need fast and reliable hosting with built-in features (cache/cdn/etc) then managed hosting from the likes of WPEngine and SiteGround is highly recommended (speaking from experience).

    The problem with comparison websites is that the hosts which pay the most affiliate commissions are usually in the top spots!

    July 1, 2019 at 9:44 am in reply to: How to allow client access to theme setup documentation #492045
    Baz
    Participant

    I may be wrong, but I don't think you can ethically 'resell' StudioPress themes e.g. sell an unmodified StudioPress child theme for $49 etc.

    However, as a Pro Plus member, you can install StudioPress themes on a client's website but the client would have to purchase a licence to have access to StudioPress support and theme documentation.

    That's how I think it works (no offence intended) 🙂

    June 21, 2019 at 2:02 pm in reply to: Genesis 3.0.1: Time to switch themes entirely? #491813
    Baz
    Participant

    Have you tried 9seeds support/forum? Looks like this is a known issue:

    https://9seeds.com/forum/ellen-mae-1/ellen-mae-technical-issues-all-websites-are-down/#p30404

    Might be best to contact 9seeds, and let us know what was causing the errors.

    June 7, 2019 at 2:53 pm in reply to: modifying child theme #491528
    Baz
    Participant

    The simple answer is that any changes you make to a child theme will be overwritten if you update the theme.

    In your example, you will have to re-enter your code in single.php after updating the theme.

    June 7, 2019 at 9:54 am in reply to: Genesis 3.0.0 Why Are You Ruining This #491525
    Baz
    Participant

    @graywolf - I totally agree with your views!

    Genesis is slowly moving away from a lightweight theme it once was to an all-in-one bloat (aka Divi). Have you noticed how the file sizes are getting bigger with all the extras needed for the one-click demo install feature and Atomic Blocks.

    Since WPengine purchased Atomic Blocks, we are now forced to use this plugin for all new themes. Why not just stick to creating layouts using the built-in Gutenberg?

    If you've built a genesis website using Atomic Blocks, what happens when there is a bug/problem with a plugin update (like it happens for every other plugin).

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 28 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

© 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