• 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

Charlie

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 76 total)
← 1 2 3 4 →
  • Author
    Posts
  • March 12, 2013 at 5:04 pm in reply to: Two New Custom Genesis Sites #25741
    Charlie
    Member

    Would it be possible to see both? You see the way I would have approached the Gerrity site would have been to register a new text widget area, plonk my html in there then call it on the home page using a conditional tag in home.php. But you obviously took a different approach, which I'd really like to understand better. If there's any favour I can do for you in return please let me know!

    March 12, 2013 at 3:58 pm in reply to: Add a logo header with a link #25732
    Charlie
    Member

    I've just tried this locally, and the header I uploaded via Appearance > Header is clickable and links back to the homepage. Can you please post a link to your site so I (or someone else) can take a look at what is going on?

    Thanks.

    March 12, 2013 at 3:07 pm in reply to: Two New Custom Genesis Sites #25715
    Charlie
    Member

    Hey Daniel, I would love to see an example file, if you don't mind. Seeing what you're doing with them I don't think I'm using structural wraps to their full potential! If you use Twitter I'm on that (see my sig).

    March 11, 2013 at 3:09 pm in reply to: Background behind header issues #25506
    Charlie
    Member

    I couldn't duplicate it. When you say fails to load completely, what do you mean exactly? It doesn't extend the full width of the page, or what?

    March 11, 2013 at 2:26 pm in reply to: How to copy main site of a Multisite? (for a new subsite) #25499
    Charlie
    Member

    The duplicator plugin is the best I've found for migrating sites.

    March 11, 2013 at 2:18 pm in reply to: Metro Header won't display #25497
    Charlie
    Member

    It looks like you got it working?

    March 11, 2013 at 2:17 pm in reply to: Migrating from one server to another #25496
    Charlie
    Member

    There are no specific steps you need to take because you're using a Genesis theme. I've successfully moved quite a few Genesis sites using the Duplicator plugin. I don't if this tutorial I wrote on how to use it would be of any use. Or this YouTube video (not by me, but the method is the same).

    March 10, 2013 at 5:58 pm in reply to: eleven40: Style site title #25352
    Charlie
    Member

    She actually wrote a tutorial on how she did it.

    PS You don't need the Genesis Extender plugin. Simply add the first block of code to your functions.php

    March 10, 2013 at 7:56 am in reply to: Make childtheme from psd? #25302
    Charlie
    Member

    StudioPress publish a list of recommended developers. Of course, there are loads of other developers not on the list! You can even find some of them on these forums...

    March 9, 2013 at 8:24 pm in reply to: Changing Navigation CSS #25245
    Charlie
    Member

    So all you have to do is separate out the styles for the primary and secondary menus. Let's start off by looking at this bit of code:

    .menu-primary li a:active,
    .menu-primary li a:hover,
    .menu-primary .current_page_item a,
    .menu-primary .current-cat a,
    .menu-primary .current-menu-item a,
    .menu-secondary li a:active,
    .menu-secondary li a:hover,
    .menu-secondary .current_page_item a,
    .menu-secondary .current-cat a,
    .menu-secondary .current-menu-item a,
    #header .menu li a:active,
    #header .menu li a:hover,
    #header .menu .current_page_item a,
    #header .menu .current-cat a,
    #header .menu .current-menu-item a {
    color: #fff;
    }

    Cut the menu-seconday references out and paste them somewhere else in your stylesheet, then give them the colour values you want. Let's say you want to make them black when active or being hovered over.

    .menu-secondary li a:active,
    .menu-secondary li a:hover,
    .menu-secondary .current_page_item a,
    .menu-secondary .current-cat a,
    .menu-secondary .current-menu-item a {
    color: #000;
    }

    Hope this helps.

    March 9, 2013 at 8:11 pm in reply to: ONLY Expose theme #25242
    Charlie
    Member

    Are you talking about flush with the header to the left, or above the box? If you look at the demo site, you can see that the posts are indented slightly from both the right and left of the header. Technically, you could move it, but it would involve adjusting your functions file, and I don’t think you want to go there just yet.

    You can do it by editing the CSS, but it is a bit of a fiddle. I got halfway there with it then gave up because it was taking too long. But it is possible!

    latinadiva: after you've uploaded your new header, why don't you look at adding a background colour? A light grey might work nicely.

    March 9, 2013 at 7:29 pm in reply to: adjusting background #25233
    Charlie
    Member

    You have the landing page up.

    March 9, 2013 at 1:24 pm in reply to: Genesis Responsive Slider #25210
    Charlie
    Member

    It looks like you figured it out?

    March 9, 2013 at 1:22 pm in reply to: Fabric Theme: Changing *Fixed* Width, Possible? #25209
    Charlie
    Member

    Yup, it's possible!

    March 9, 2013 at 1:21 pm in reply to: Increase Sidebar Width in News Theme #25208
    Charlie
    Member

    I found this in the CSS, and the width is 305px as standard, so you should be able to fit images 300px wide in there. What happens when you try to?

    [cs]
    .sidebar {
    display: inline;
    float: right;
    font-size: 13px;
    line-height: 20px;
    width: 305px;
    }
    [/css]

    March 9, 2013 at 11:56 am in reply to: eleven40 theme – menu breaks when resized #25194
    Charlie
    Member

    That's not what I experience. Even if I re-size my browser (Chrome) as small as it'll go, all the top-right menu items remain on a black bacground, just re-arranged on four different rows.

    March 9, 2013 at 11:53 am in reply to: Menu Getting Hidden #25192
    Charlie
    Member

    That doesn't happen for me with Chrome. What browser are you using?

    March 6, 2013 at 5:51 pm in reply to: Removing Footer .. must be simple! #24659
    Charlie
    Member

    You can remove the default footer with this code:

    remove_action( 'genesis_footer', 'genesis_do_footer' );
    
    March 6, 2013 at 5:44 pm in reply to: Magazine theme: resize header image space #24656
    Charlie
    Member

    From the WordPress dashboard, click on Appearance > Editor, then to the right of your screen you should be able to click on Theme Functions (functions.php).

    Make sure to make a copy of the file before making any edits so you can re-upload it in the case you make a mistake and (temporarily) break your site.

    March 6, 2013 at 5:08 pm in reply to: Space between text on Genesis Simple Hooks footer text? #24645
    Charlie
    Member

    Can you provide a link to your site so we can see what you mean?

  • Author
    Posts
Viewing 20 posts - 41 through 60 (of 76 total)
← 1 2 3 4 →
« 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