• 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

JanHoek

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 - 161 through 180 (of 199 total)
← 1 2 3 … 8 9 10 →
  • Author
    Posts
  • June 19, 2014 at 2:00 pm in reply to: Ambiance Pro Images on Homepage #110623
    JanHoek
    Participant

    change that in your css.

    Can you take a look in your functions.php what the image-size are? They look like

    add_image_size( 'featured-medium', 340, 150, TRUE );


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 19, 2014 at 1:48 pm in reply to: Introduction and Question #110616
    JanHoek
    Participant

    Hi Chris, welcome on the StudioPress Forums.

    You can try the change following CSS

    .full-width-content .genesis-grid-even, 
    .full-width-content .genesis-grid-odd {
    width: 100%;
    }

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 19, 2014 at 1:41 pm in reply to: Change #of widgets displayed in Agency Pro #110614
    JanHoek
    Participant

    Glad it worked. And yes. I'm Dutch 🙂 Living on the beautiful island of Texel


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 19, 2014 at 1:34 pm in reply to: Ambiance Pro Images on Homepage #110609
    JanHoek
    Participant

    Does changing the height: 324px; in max-height: 324px; help? Normal this size is set in your functions.php - image-sizes


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 19, 2014 at 1:30 pm in reply to: How do you design a header like this??!! #110608
    JanHoek
    Participant

    See this tut http://surefirewebservices.com/tutorials/nav-logo-nav-genesis-framework

    If you want logo effects you can let it drop with animate.css


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 19, 2014 at 1:23 pm in reply to: Change #of widgets displayed in Agency Pro #110606
    JanHoek
    Participant

    remove both clear: left; in custom.css and style.css

    .home-bottom .featuredpost .post:nth-of-type(3n+1), .home-middle .featuredpost .post:nth-of-type(2n+1) {
    /* clear: left; */

    .home-bottom .featuredpost .post:nth-of-type(3n+1), .home-middle .featuredpost .post:nth-of-type(3n+1) {
    /* clear: left; */


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 19, 2014 at 12:03 pm in reply to: "Filed under" won't change #110591
    JanHoek
    Participant

    Try to put this file in your functions.php and change the Filed Under text

    //* Customize the post meta function
    add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
    function sp_post_meta_filter($post_meta) {
    if ( !is_page() ) {
    $post_meta = '[post_categories before="Filed Under: "]';
    return $post_meta;
    }}


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 19, 2014 at 11:54 am in reply to: Custom Header #110588
    JanHoek
    Participant

    Add ( or replace) this in your functions.php

    add_theme_support( 'genesis-custom-header', array( 'width' => 1140, 'height' => 200 ) );

    Upload your header again. If your image is stll to small. Use the Regenerate Thumbnails Plugin


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 19, 2014 at 11:44 am in reply to: disable name link when using lightbox #110585
    JanHoek
    Participant

    I don't see any "staff" links


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 19, 2014 at 11:42 am in reply to: Add image as background for Balance Theme #110583
    JanHoek
    Participant

    You must give your site-inner a background-color

    body {
    background-color: your image;
    }
    
    #inner {
    margin: 0 auto;
    overflow: hidden;
    width: 960px;
    background-color: #fff;
    }

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 17, 2014 at 3:57 am in reply to: Outreach Pro Header Align Center #110145
    JanHoek
    Participant

    try to remove the min-height and width from;

    .header-image .site-title a {
    background: url(images/logo.jpg) center no-repeat;
    /* height: 145px; */
    /* width: 1040px;
    
    .header-image .site-title > a {
    float: left;
    /* min-height: 145px; */
    /* width: 100%;

    Your background image should also be in the center now.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 17, 2014 at 3:45 am in reply to: How to add place for wide google ad in Lifestyle theme? #110144
    JanHoek
    Participant

    Hi, put this code in your functions.php of your child theme.

    //* Add the sub footer section
    add_action( 'genesis_before_footer', 'jan_sub_footer', 5 );
    function jan_sub_footer() {
    
    	if ( is_active_sidebar( 'sub-footer' ) ) {
    		echo '<div class="sub-footer"><div class="wrap">';
    		
    		   genesis_widget_area( 'sub-footer', array(
    		       'before' => '<div class="sub-footer">',
    		       'after'  => '</div>',
    		   ) );
    	
    		echo '</div><!-- end .wrap --></div><!-- end .sub-footer -->';	
    	}
    	
    }
    
    genesis_register_sidebar( array(
    	'id'          => 'sub-footer',
    	'name'        => __( 'Sub Footer', 'jan' ),
    	'description' => __( 'This is the left section of the sub footer.', 'jan' ),
    ) );

    This put a widget area above your footer. You can see the Sub Footer widget if everything goes as plan.

    Style it as you wish.

    .sub-footer {
    	background-color: #3CB4B4;
    	padding: 40px 0 30px;
    	clear: both;
    	overflow: auto;
    }
    
    .sub-footer .widget {
    	clear: both;
    	overflow: auto;
    	margin: 0 0 20px 0;
    }
    
    .sub-footer .widget-title {
    	color: #2E8986;
    	font-size: 26px;
    	text-transform: none;
    }

    Hope this wil work for you


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 13, 2014 at 3:43 am in reply to: Ambiance: Want to have the header area fixed #109558
    JanHoek
    Participant

    Super. Glad I could help.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 12, 2014 at 3:07 pm in reply to: Ambiance: Want to have the header area fixed #109511
    JanHoek
    Participant

    Ok let's give it a try 🙂

    Put this in your functions.php

    function after_header_content() {
        echo '<div class="after-header"></div>';
    };
    add_action('genesis_after_header', 'after_header_content', 10 );

    Than add something like this to your CSS

    .after-header {
    	background: url(your-image.jpg) repeat-x;
    	height: 20px;
    	margin-top:100px; (relative to the height of your header)
    	position: fixed;
    	width: 100%;
    }

    And

    @media only screen and (max-width: 1023px) {
    
    .after-header {
            display: none;
    }

    Lets see if it works


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 9, 2014 at 2:10 pm in reply to: White background for widgets – Lifestyle Pro theme #108659
    JanHoek
    Participant

    You're welcome. Please set this topic to Solved if you have no further questions. Good luck with your design.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 9, 2014 at 1:53 pm in reply to: White background for widgets – Lifestyle Pro theme #108652
    JanHoek
    Participant
    .footer-widgets .widget {
    margin-bottom: 0;
    
    .footer-widgets {
    padding-bottom: 32px;

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 9, 2014 at 12:03 pm in reply to: White background for widgets – Lifestyle Pro theme #108638
    JanHoek
    Participant

    Is this what you mean?

    .footer-widgets-1, 
    .footer-widgets-3 {
    background-color: #fff;

    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 8, 2014 at 8:11 am in reply to: Enterprise Pro Footer Widget Font Colour #108521
    JanHoek
    Participant

    colour = color ??


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 7, 2014 at 3:06 pm in reply to: Remove site tagline Minimum Pro #108474
    JanHoek
    Participant

    Your Welcome. Please set this topic to resolved if you have no further questions.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

    June 7, 2014 at 2:50 pm in reply to: Sixteen Nine Pro – entry.content to 100% height? #108472
    JanHoek
    Participant

    Post your URL please, so we can help you better.


    Hi, my name is Jan Hoek. Sure, they all say I have a big head, but I like to think it’s way too small for all my ideas.

  • Author
    Posts
Viewing 20 posts - 161 through 180 (of 199 total)
← 1 2 3 … 8 9 10 →
« 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