• 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

Pinky

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 - 21 through 40 (of 91 total)
← 1 2 3 4 5 →
  • Author
    Posts
  • March 18, 2013 at 2:33 pm in reply to: need 5 footer widget #29147
    Pinky
    Member

    hehe don't ya just love it!

    I'm glad it worked out for you!


    cheers

    Pinky

    March 18, 2013 at 1:28 pm in reply to: Quick question about header/footer in the Pretty Pictures theme… #29119
    Pinky
    Member

    hey Gregory - glad I could help.

    Help Scout hey... I was just looking at that yesterday through my premium wpmu membership - will be taking it for a test drive this week... coincidence ?


    cheers

    Pinky

    March 18, 2013 at 10:05 am in reply to: 3 more Widgets on Homepage #29020
    Pinky
    Member

    so glad it worked out... loving the colours!


    cheers

    Pinky

    March 18, 2013 at 9:38 am in reply to: Changing Metro Theme Title – H1 #29012
    Pinky
    Member

    Tracy can you please start a new thread with your question/s and a link to your site


    cheers

    Pinky

    March 18, 2013 at 9:24 am in reply to: [Delicious] 2 Home Bottom not 3 ? #29009
    Pinky
    Member

    Let us know how you get on 🙂


    cheers

    Pinky

    March 18, 2013 at 9:22 am in reply to: Outreach theme, move home widget area #29007
    Pinky
    Member

    Kathie was the events calendar I sent you yesterday any good?


    cheers

    Pinky

    March 18, 2013 at 9:20 am in reply to: Outreach theme, move home widget area #29005
    Pinky
    Member

    Oh soz Hun.... I didn't see page 2 lol


    cheers

    Pinky

    March 18, 2013 at 9:19 am in reply to: Outreach theme, move home widget area #29004
    Pinky
    Member

    Oh soz Hun.... I didn't see page 2 lol


    cheers

    Pinky

    March 18, 2013 at 9:17 am in reply to: How Do I change the color of my header? #29003
    Pinky
    Member

    All the black is coming from the background image - not the header.

    So if that's what you are looking to get rid of you need to change this:

    /* Body ———————————————————— */
    
    body {  background: #e5e9ee url(images/bg.png) repeat-x; }
    

    to this:

    /* Body ———————————————————— */
    
    body {  background: #e5e9ee; }
    

    At least I think that's what you mean (?)


    cheers

    Pinky

    March 18, 2013 at 8:47 am in reply to: Outreach theme, move home widget area #28990
    Pinky
    Member

    Ok girls - can you explain what you're wanting to do for me please - or indeed if your issues are sorted out.

    If you still need help I'll see what I can do


    cheers

    Pinky

    March 18, 2013 at 8:39 am in reply to: Custom Content Outreach Theme Landing Page #28988
    Pinky
    Member

    Hi there

    Can we have a link to your site please... it helps a lot


    cheers

    Pinky

    March 18, 2013 at 8:39 am in reply to: 3 more Widgets on Homepage #28986
    Pinky
    Member

    lol... @ anita I actually didn't realise I'm such a nerd until I started answering some of these questions!

    hehe - you sure can design tho!


    cheers

    Pinky

    March 18, 2013 at 8:36 am in reply to: Center Image in Responsive Slider? #28985
    Pinky
    Member

    Hey Mark

    If you add this to your style.css it will center the images for you.

    .flexslider .slides {
    margin-left: 140px;
    }
    

    If you want to get rid of the white area, you can go to line 129 of your style.css and replace this:

    .flexslider {
    background: #fff;
    position: relative;
    zoom: 1;
    }
    

    With this:

    .flexslider {
    background: none;
    position: relative;
    zoom: 1;
    }
    

    Hope that helps


    cheers

    Pinky

    March 18, 2013 at 8:04 am in reply to: 3 more Widgets on Homepage #28972
    Pinky
    Member

    Hi there

    functions.php looks fine to me.

    You just need to call the functions into the home.php

    On the home page replace this:

    genesis_widget_area( 'home-featured-1', array(
                'before' => '<div id="home-featured"><div class="wrap">',
            ) );
    
        genesis_widget_area( 'home-featured-2', array(
                'before' => '<div id="home-featured"><div class="wrap">',
            ) );
    
        genesis_widget_area( 'home-featured-3', array(
                'before' => '<div id="home-featured"><div class="wrap">',
            ) );
    
        genesis_widget_area( 'newsletter', array(
            'before' => '<div id="newsletter"><div class="wrap">',
            'after' => '</div></div>',
        ) );
    
        genesis_widget_area( 'blog', array(
            'before' => '<div id="blog"><div class="wrap">',
            'after' => '</div></div>',
        ) );
    
    

    with this :

    	echo '<div id="home-featured"><div class="wrap">';
    
    		genesis_widget_area( 'home-featured-1', array(
    			'before' => '<div class="home-featured-1 widget-area">',
    		) );
    
    		genesis_widget_area( 'home-featured-2', array(
    			'before' => '<div class="home-featured-2 widget-area">',
    		) );
    
    		genesis_widget_area( 'home-featured-3', array(
    			'before' => '<div class="home-featured-3 widget-area">',
    		) );
    
    	echo '</div><!-- end .wrap --></div><!-- end #home-featured -->';
    

    The css should be ok as it is but if it gives you problems once you've done all of the above, then try this:

    /* Home Featured
    ------------------------------------------------------------ */
    
    #home-featured {
        overflow: hidden;
        padding: 60px 0;
        width: 100%;
    }
    
    .home-featured-1,
    .home-featured-2 {
        float: left;
        margin: 0;
        overflow: hidden;
        text-align: center;
        width: 33%;
    }
    
    .home-featured-3 {
        float: right;
        margin: 0;
        overflow: hidden;
        text-align: center;
        width: 33%;
    }
    

    cheers

    Pinky

    March 17, 2013 at 5:33 pm in reply to: Customising Agency Theme #28699
    Pinky
    Member

    hey Dan

    Thanks for the help to you too... I'll be trying out that bit of code myself!


    cheers

    Pinky

    March 17, 2013 at 5:31 pm in reply to: need 5 footer widget #28697
    Pinky
    Member

    In your functions.php file you need to change this:

    /** Add support for 3-column footer widgets */
    add_theme_support( 'genesis-footer-widgets', 3 );
    

    to this:

    /** Add support for 5-column footer widgets */
    add_theme_support( 'genesis-footer-widgets', 5 );
    

    Then in your style.css go to line 1611 change this:

    .footer-widgets-1 {
    	float: left;
    	margin: 0 20px 0 0;
    	width: 295px;
    }
    
    .footer-widgets-2 {
    	float: left;
    	width: 290px;
    }
    
    .footer-widgets-3 {
    	float: right;
    	width: 295px;
    }
    

    to this:

    .footer-widgets-1 {
    	float: left;
    	margin: 0 2% 0 0;
    	width: 18%;
    }
    
    .footer-widgets-2 {
    	float: left;
    	margin-right: 2%;
    	width: 18%;
    }
    
    .footer-widgets-3 {
    	float: left;
    	margin-right: 2%;
    	width: 18%;
    }
    .footer-widgets-4 {
    	float: left;
    	margin-right: 2%;
    	width: 18%;
    }
    
    .footer-widgets-5 {
    	float: right;
    	width: 18%;
    }
    

    then on line 2427 and below this:

    	.footer-widgets-1,
    	.footer-widgets-2,
    	.footer-widgets-3,
    

    add this

    	.footer-widgets-4,
    	.footer-widgets-5,
    

    That should do the trick!


    cheers

    Pinky

    March 17, 2013 at 5:12 pm in reply to: Prose, right image off the screen #28692
    Pinky
    Member

    Sure can!

    Add this to your style.css :

    .size-medium.wp-image-65.alignright {
    margin-right: 35px;
    margin-top: 45px;
    }
    

    I've added margin-top so it moves it down a touch and lines up with the bullet points rather than the headline, if you don't want that just remove the line margin-top: 45px;

    If you want to move it around more - just play with the margin-right number


    cheers

    Pinky

    March 17, 2013 at 6:33 am in reply to: need 5 footer widget #28531
    Pinky
    Member

    In your functions.php file (take a backup first), then add this code:

    /** Add support for 3-column footer widgets */
    add_theme_support('genesis-footer-widgets', 3 );
    

    You'll then need to edit your style.css to make them line up properly.

    If you give us a link to your site or tell us which theme you are using it will help.


    cheers

    Pinky

    March 17, 2013 at 6:29 am in reply to: Post titles in Mindstream? #28530
    Pinky
    Member

    no worries Mate... glad I could help!


    cheers

    Pinky

    March 17, 2013 at 6:16 am in reply to: Post titles in Mindstream? #28527
    Pinky
    Member

    Ah soz about that.... try this then:

    In the functions.php file remove this - obviously take a backup copy first!...

    add_action( 'genesis_before_post', 'mindstream_remove_elements' );
    /**
     * If post has post format, remove the title, post info, and post meta.
     * If post does not have post format, then it is a default post. Add
     * title, post info, and post meta back.
     *
     * @since 1.0
     */
    function mindstream_remove_elements() {
    	
    	// Remove if post has format
    	if ( get_post_format() ) {
    		remove_action( 'genesis_post_title', 'genesis_do_post_title' );
    		remove_action( 'genesis_before_post_content', 'genesis_post_info' );
    		remove_action( 'genesis_after_post_content', 'genesis_post_meta' );
    	}
    	// Add back, as post has no format
    	else {
    		add_action( 'genesis_post_title', 'genesis_do_post_title' );
    		add_action( 'genesis_before_post_content', 'genesis_post_info' );
    		add_action( 'genesis_after_post_content', 'genesis_post_meta' );
    	}
    	
    }
    

    cheers

    Pinky

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 91 total)
← 1 2 3 4 5 →
« Previous Page

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