• 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

jenwilson

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 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • May 11, 2016 at 8:41 am in reply to: Editing Header Image from Partial to Full Width #185405
    jenwilson
    Member

    I did change all the widths (except the widget width) to 100% and it didn't work. It actually moved the logo to the far left of the site (maybe has something to do with the wrap...not exactly sure). I'm still not seeing the full 1000 px width of the new header image I have uploaded.

    Sorry...struggling with this.

    May 11, 2016 at 8:22 am in reply to: Editing Header Image from Partial to Full Width #185404
    jenwilson
    Member

    Thanks Brad, I tried that and it didn't seem to work. Should I have changed the width in both the Header and the Image Header Partial Width or just one of those?

    May 6, 2016 at 11:03 am in reply to: Editing Header Image from Partial to Full Width #185105
    jenwilson
    Member

    This is the Hans theme. See below for the header CSS

    /* Header
    ------------------------------------------------------------ */
    #header {
    	margin: 0 auto;
    	min-height: 120px;
    	width: 100%; 
    }
    
    #header .wrap {
    	margin: 0 auto;
    	width: 1000px;
    }
     
    #title-area {
    	float: left;
    	overflow: hidden;
    	padding: 17px 0 0;
    	width: 500px; 
    }
    
    #title {
    	display: block;
    	float: left;
    	font-family: 'Muli', arial, serif;
    	font-size: 29px;
    	line-height: 1.25;
    	margin-right: 5px;
    	margin: 0;
    	text-transform: uppercase; 
    }
     
    #title a,
    #title a:hover {
    	color: #c7ca50;
    	padding: 0;
    	text-decoration: none; 
    }
     
    #description {
    	color: #828487;
    	display: inline;
    	font-size: 14px;
    	line-height: 1.25;
    	font-family: 'Muli', arial, serif;
    	font-size: 29px;
    	font-weight: 300;
    	padding: 0 0 0 20px; 
    	text-transform: uppercase; 
    }
     
    #header .widget-area {
    	display: block;
    	float: right;
    	height: 0;
    	margin: 0;
    	overflow: hidden;
    	padding: 0;
    	width: 0; 
    }
    
    #header .phone {
    	float: right;
    	width: 50%; 
    }
     
    #header .phone h3 {
    	color: #d7754a;
    	font-family: 'Muli', arial, serif;
    	font-size: 21px;
    	margin-top: 20px;
    	text-align: right;
    }
     
    /* Image Header - Partial Width
    ------------------------------------------------------------ */
    .header-image #header #title-area {
    	background: url(images/logo.png) left top no-repeat;
    	float: left;
    	margin: 30px 0 0 0; 
    }
     
    .header-image #title-area,
    .header-image #title,
    .header-image #title a {
    	display: block;
    	float: left;
    	overflow: hidden;
    	padding: 0;
    	text-indent: -9999px;
    	width: 400px; 
    }
     
    .header-image #description {
    	display: block;
    	height: 175;
    	overflow: hidden;
    	width: 400; 
    }
    February 18, 2015 at 3:21 pm in reply to: Internet Explorer Issues #141247
    jenwilson
    Member

    Thanks Timothy.

    This is helpful to know that your version of IE. Would you mind to try playing one of the other Chapters and let me know?

    Thanks a bunch.

    March 5, 2014 at 9:26 am in reply to: Balance Theme – Replace Home Page Posts with Widget #93527
    jenwilson
    Member

    I will give it a go. Thank you JohnsonMktg. 🙂

    January 22, 2014 at 12:31 pm in reply to: Balance Theme – Replace Home Page Posts with Widget #86502
    jenwilson
    Member

    Hmmmm... I will see if I can follow that.

    What do you mean by "comment out"...

    Thanks a lot for helping out with this.

    January 22, 2014 at 11:27 am in reply to: Balance Theme – Replace Home Page Posts with Widget #86490
    jenwilson
    Member

    Step 1 - Added to the bottom of the functions.php file

    Step 2 - Added directly after the <?php of the home.php file

    January 22, 2014 at 11:17 am in reply to: Balance Theme – Replace Home Page Posts with Widget #86485
    jenwilson
    Member

    Thank you so much John. This is the code I used:

    Step 1

    genesis_register_sidebar( array(
        'id' => 'home-featured',
        'name' => __( 'Home Featured', 'balance' ),
        'description' => __( 'This is the home featured section.', 'balance' ),
    ) );

    Step 2

    /** Add the home featured section */
    add_action( 'genesis_before_loop', 'balance_home_featured' );
    function balance_home_featured() {
    
        /** Do nothing on page 2 or greater */
        if ( get_query_var( 'paged' ) >= 2 )
            return;
    
        genesis_widget_area( 'home-featured', array(
        'before' => '
    ',
        ) );
    
    }

    Step 3

    .home-featured {
        background-color: #f5f5f5;
        border: 1px solid #ddd;
        float: left;
    }

    Not sure exactly where I went wrong. :-/

    January 22, 2014 at 10:07 am in reply to: Balance Theme – Replace Home Page Posts with Widget #86472
    jenwilson
    Member

    Still trying to work this out. Any help or direction would be greatly appreciated.

    Thanks

    January 21, 2014 at 10:23 am in reply to: Balance Theme – Replace Home Page Posts with Widget #86283
    jenwilson
    Member

    Morning...

    Still looking for a bit on input on this one. 🙂

    January 20, 2014 at 2:04 pm in reply to: Balance Theme – Replace Home Page Posts with Widget #86141
    jenwilson
    Member

    Hey there,

    I was able to get a widget registered for the home page, however there is a slight alignment issue. The sidebar is being pushed down.

    Any suggestions how I resolve the alignment so the sidebar sits normally to the right of the widget and post area?

    Thanks in advance. 🙂

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

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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