• 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

sebgates

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 50 total)
1 2 3 →
  • Author
    Posts
  • March 19, 2015 at 4:40 am in reply to: How to remove sections from the Theme customizer? #144910
    sebgates
    Member

    Thanks Brad. I will take a look. I appreciate you looking into the issue.

    July 7, 2014 at 3:17 am in reply to: How can I hook an image above the content on the blog page template #113190
    sebgates
    Member

    Thanks Brad, your a star. I will give your code a go.

    July 6, 2014 at 12:51 pm in reply to: How can I hook an image above the content on the blog page template #113141
    sebgates
    Member

    Thanks Brad. I had already read your blog post when I Googled the problem. I was trying to hook an image above the main content area. It seems the blog page template is hard to use Conditional Hooks on unlike the other templates in Genesis. I solved the problem using the Views plugin in the end by creating a short code for the blog page and adding it to a normal page template. Thanks for answering my question.

    May 8, 2014 at 3:45 pm in reply to: How to style a Gist from Github #104192
    sebgates
    Member

    I figured it out.

    January 6, 2014 at 10:24 am in reply to: How do I apply opacity to the page correctly? #83598
    sebgates
    Member

    It seems you need to use a png image with opacity and report it as the background. I could not get anything else to work.

    January 6, 2014 at 4:41 am in reply to: How can I remove a border from 1 menu item? #83561
    sebgates
    Member

    Thanks Peter, that sorted it. Top man. I did do this myself a year ago but I have forgotten what I did to achieve it. I will add your code to my snippets file.

    December 27, 2013 at 4:20 pm in reply to: Blue select area around contact forms and query ui elements #81469
    sebgates
    Member

    It's not Genesis, it's jQuery UI. If anyone else has this problem, add this to your style sheet:

    #accordion .ui-state-focus{
    outline: none;
    }

    December 17, 2013 at 7:03 am in reply to: What to use the Scripts box for found at the bottom of admin pages? #79745
    sebgates
    Member

    Ok, thanks.

    December 6, 2013 at 12:31 pm in reply to: How can I remove the 'Scripts' box at the bottom of the page/post in edit view? #77397
    sebgates
    Member

    Thanks for your time on this. You have been really helpful. I like your website by the way, nice mouse over effects on the 3 columns under the call to action.

    Seb

    December 6, 2013 at 4:08 am in reply to: How can I remove the 'Scripts' box at the bottom of the page/post in edit view? #77331
    sebgates
    Member

    Andrea, I did try adding the code into my functions php file and I got a fatal error message. Would you know what I would add to my functions file to get rid of the scripts box in the admin area/page view? Have you tested the code yourself? Perhaps I did not understand Tom's instructions.

    Thanks for your time, Seb

    November 20, 2013 at 3:13 am in reply to: How to enqueue web fonts #74342
    sebgates
    Member

    OK, I will give it a go.

    Thanks

    November 19, 2013 at 1:39 pm in reply to: How to enqueue web fonts #74229
    sebgates
    Member

    Thanks Brad, that was quick.

    I am not self hosting. I just want to use the fonts the best was I can. So if I wanted to enqueue the fonts from fonts.com on a project, would it look like this?

    add_action( 'wp_enqueue_scripts', 'your_enqueue_scripts' );
    function your_enqueue_scripts() {

    wp_enqueue_style( 'web-fonts', '//fast.fonts.net/cssapi/77b667e4-995f-4792-ac5b-3711808c3891.css', array(), CHILD_THEME_VERSION );

    }

    October 19, 2013 at 8:28 am in reply to: How can I split the footer creds in half – left and right? #67649
    sebgates
    Member

    Thanks Sridhar. That solved my problem.

    October 7, 2013 at 1:59 am in reply to: Creating wraps for new content areas #65615
    sebgates
    Member

    Try copying this in your functions php file:

    //* Add support for structural wraps
    add_theme_support( 'genesis-structural-wraps', array(
    'header',
    'nav',
    'subnav',
    'inner',
    'footer-widgets',
    'footer'
    ) );

    And then add relevant css for the elements in your style sheet:

    For example:

    #nav .wrap {
    margin:0 auto;
    max-width: 1152px;
    }

    #header .wrap {
    margin:0 auto;
    max-width: 1152px;
    }

    It depends what theme you are using. I only use the Sample theme and develop sites from that. The new sample theme has support for these wraps by default.

    Hope that helps - Seb

    August 13, 2013 at 12:54 pm in reply to: Padding or margin issues using The new Sample child theme #56131
    sebgates
    Member

    I figured it out. Sidebar and content now have fixed pixel widths.

    July 24, 2013 at 3:06 pm in reply to: Creating wraps for new content areas #52323
    sebgates
    Member

    It's OK, I figured it out.

    Thanks - Seb

    July 24, 2013 at 1:57 pm in reply to: Creating wraps for new content areas #52306
    sebgates
    Member

    I have fond this on a blog for creating wraps to other elements. Would I just add the name of my new div to the list?:

    //* Add support for structural wraps
    add_theme_support( 'genesis-structural-wraps', array(
    'header',
    'nav',
    'subnav',
    'inner',
    'footer-widgets',
    'footer'
    ) );

    July 15, 2013 at 12:24 am in reply to: Need help adding new structure to the Sample Child theme #50741
    sebgates
    Member

    Thanks Brad. Ironic that a tutorial was on the website I was looking to reference 🙂

    I think I understand what I need to learn. Action hooks and filters will give me a few more options with designing layouts.

    Thanks again - Seb

    July 4, 2013 at 2:29 am in reply to: How to make my website scale properly on an iPhone #49138
    sebgates
    Member

    As it happens the scale to viewport did not do the job. The correct code was the one I found on CSS Tricks:

    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">

    I think the way to do it is to find a way to make the whole framework unresponsive and then add the code in your head section. The code makes iPhone. ipad devices scale the web site properly.

    The way to get round the header issue in Genesis is to use this plug in. http://designsbynickthegeek.com/plugins/genesis-responsive-header

    I have only been using Genesis for about 6 months so I am no expert.

    Hope that helps - Seb

    June 29, 2013 at 4:00 am in reply to: How to make my website scale properly on an iPhone #48349
    sebgates
    Member

    I figured it out: <meta name="viewport" content="width=device-width; initial-scale=0; maximum-scale=1.0;">

    Make the initial scale =0

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

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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