• 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

Stensson

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 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • February 12, 2014 at 5:31 am in reply to: Text over background image Minimum Pro Help #89942
    Stensson
    Member

    Perhaps these links can be helpful.

    Overlaying text on background image in Minimum Pro

    Overlaying text on background image in Minimum Pro – Part 2

    February 11, 2014 at 7:46 am in reply to: Minimum Pro Theme Customization Help #89790
    Stensson
    Member

    If you set the height and width of your logo in functions.php it won't be cropped, but you may need to modify your theme's CSS.

    February 11, 2014 at 7:17 am in reply to: Minimum Pro Theme Customization Help #89786
    Stensson
    Member

    You can increase the header size in functions.php

    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    'width' => 320,
    'height' => 60,
    'header-selector' => '.site-title a',
    'header-text' => false
    ) );

    February 11, 2014 at 6:53 am in reply to: Minimum Pro Theme Customization Help #89774
    Stensson
    Member

    Removing site tagline section from Pages in Minimum Pro

    February 11, 2014 at 6:44 am in reply to: Different Colour Menus #89770
    Stensson
    Member

    http://www.wpbeginner.com/wp-themes/how-to-style-wordpress-navigation-menus/

    .genesis-nav-menu .home {
    background: #FF0000;
    }

    February 9, 2014 at 3:16 am in reply to: LifeStyle Pro – how can I change the width of the main content #89459
    Stensson
    Member

    .content {
    float: right;
    width: 700px;
    }

    January 24, 2014 at 3:18 am in reply to: Tired of Hostgator hopeless service, any alternative (no affiliates please) #86774
    Stensson
    Member

    I gave you an honest answer to your question, moron.

    January 23, 2014 at 9:33 am in reply to: Tired of Hostgator hopeless service, any alternative (no affiliates please) #86640
    Stensson
    Member

    I've used Pair for hosting for about eight years. Great uptime and excellent support, highly recommended.
    http://www.pair.com/

    January 18, 2014 at 4:24 am in reply to: Resizing Mobile Header Images in Executive Pro #85732
    Stensson
    Member

    This might be of help:

    Genesis Responsive Header

    January 17, 2014 at 10:09 am in reply to: Resizing Mobile Header Images in Executive Pro #85624
    Stensson
    Member

    Images of exactly 260 ?— 100 pixels will give the best results according to Theme Setup

    September 5, 2013 at 11:34 am in reply to: Metro Pro Bug #60887
    Stensson
    Member

    The problem Martin79 reported has apparently been fixed!

    September 4, 2013 at 2:59 pm in reply to: Metro Custom Menu Above Header #60714
    Stensson
    Member

    You're welcome Lisa!

    September 4, 2013 at 1:15 pm in reply to: Metro Custom Menu Above Header #60699
    Stensson
    Member

    I'm glad I could help.

    Hey, I don’t want to take up too much more of your time, but I wondered – is the black box behind the menu an image? I want to make the text black and remove the thick black background to the menu. Suspect this is simple, but have been hunting for a while and can’t seem to find it!

    It's all about css.

    /*
    04 Menus
    ---------------------------------------------------------------------------------------------------- */

    .genesis-nav-menu {
    overflow: hidden;
    }

    .menu-secondary,
    #header .genesis-nav-menu {
    float: right;
    width: auto;
    }

    #header .genesis-nav-menu {
    float: left;
    margin-top: 15px;
    margin-top: 2rem;
    width: auto;
    }

    .genesis-nav-menu.menu-primary {
    background-color: #fff;
    }

    .genesis-nav-menu ul {
    float: right;
    width: 100%;
    }

    .genesis-nav-menu li {
    display: inline-block;
    float: right;
    list-style-type: none;
    text-align: left;
    }

    .genesis-nav-menu a {
    display: block;
    padding: 16px 20px 14px;
    padding: 1rem 1.25rem 0.875rem;
    position: relative;
    color: #000;
    }

    .genesis-nav-menu.menu-secondary a {
    padding: 12px 16px;
    padding: 0.75rem 1rem;
    }

    .genesis-nav-menu .current-menu-item a,
    .genesis-nav-menu li a:hover,
    .genesis-nav-menu li:hover a {
    background-color: #f96e5b;
    }

    .genesis-nav-menu li li a,
    .genesis-nav-menu li li a:link,
    .genesis-nav-menu li li a:visited {
    background-color: #333;
    padding: 16px 20px 14px;
    padding: 1rem 1.25rem 0.875rem;
    position: relative;
    width: 120px;
    }

    .genesis-nav-menu.menu-secondary li li a,
    .genesis-nav-menu.menu-secondary li li a:link,
    .genesis-nav-menu.menu-secondary li li a:visited {
    padding: 12px 16px;
    padding: 0.75rem 1rem;
    width: 140px;
    }

    .genesis-nav-menu li li a:hover {
    background-color: #f96e5b;
    }

    .genesis-nav-menu li ul {
    left: -9999px;
    position: absolute;
    width: 160px;
    z-index: 99;
    }

    .genesis-nav-menu.menu-secondary li ul {
    width: 132px;
    }

    .genesis-nav-menu li ul ul {
    margin: -42px 0 0 159px;
    }

    .genesis-nav-menu.menu-secondary li ul ul {
    margin: -36px 0 0 171px;
    }

    .genesis-nav-menu li:hover ul ul,
    .genesis-nav-menu li.sfHover ul ul {
    left: -9999px;
    }

    .genesis-nav-menu li:hover,
    .genesis-nav-menu li.sfHover {
    position: static;
    }

    ul.genesis-nav-menu li:hover>ul,
    ul.genesis-nav-menu li.sfHover ul,
    #header .genesis-nav-menu li:hover>ul,
    #header .genesis-nav-menu li.sfHover ul {
    left: auto;
    }

    .genesis-nav-menu li a .sf-sub-indicator,
    .genesis-nav-menu li li a .sf-sub-indicator,
    .genesis-nav-menu li li li a .sf-sub-indicator {
    position: absolute;
    text-indent: -9999px;
    }

    #wpadminbar li:hover ul ul {
    left: 0;
    }

    Cheers,
    Jonas

    September 4, 2013 at 11:28 am in reply to: Metro Custom Menu Above Header #60672
    Stensson
    Member

    Copy the code directly from github, it should work.

    Cheers,
    Jonas

    September 4, 2013 at 11:11 am in reply to: Metro Custom Menu Above Header #60668
    Stensson
    Member

    It should work. What happens If you unregister primary navigation menu?

    //* Unregister primary navigation menu
    add_theme_support( 'genesis-menus', array( 'secondary' => __( 'Secondary Navigation Menu', 'genesis' ) ) );

    Navigation Menus

    /Jonas

    September 4, 2013 at 9:56 am in reply to: Metro Custom Menu Above Header #60647
    Stensson
    Member

    Add to functions.php

    /* Reposition the primary navigation menu
    remove_action( 'genesis_after_header', 'genesis_do_nav' );
    add_action( 'genesis_before_header', 'genesis_do_nav' );

    /Jonas

    December 31, 2012 at 6:59 am in reply to: No Background…autofit #8586
    Stensson
    Member

    http://getfirebug.com/

  • Author
    Posts
Viewing 17 posts - 1 through 17 (of 17 total)

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