• 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 - 141 through 160 (of 199 total)
← 1 2 3 … 7 8 9 10 →
  • Author
    Posts
  • June 21, 2014 at 11:55 am in reply to: How to add place for wide google ad in Lifestyle theme? #110970
    JanHoek
    Participant

    you're welcome. Please set te post to solved if you have now further questions. Good luck.


    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 20, 2014 at 3:01 pm in reply to: "Filed under" won't change #110842
    JanHoek
    Participant

    Emasai, did you already get an answer from Carrie about this?


    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 20, 2014 at 2:56 pm in reply to: "Filed under" won't change #110841
    JanHoek
    Participant

    I tested this code in Minimum Pro. Metric 1.0 and Genesis Sample and worked perfect on blog, archive and single page/post

    //* Customize the post meta function
    
    add_filter('genesis_post_meta', 'post_meta_filter');
    function post_meta_filter($post_meta) {
    if (!is_page()) {
        $post_meta = '[post_categories before="Plop: "] [post_tags before="Tagged: "]';
        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 20, 2014 at 2:16 pm in reply to: Removing page titles but not blog post titles #110838
    JanHoek
    Participant

    I don't think so. It's this way or by CSS (than you have to specify each page like .page-id-011 .entry-title { display:none; }

    or you can use a plugin. Personal i think that the first option is the best.


    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 20, 2014 at 1:49 pm in reply to: Sticky post not sticky enough #110827
    JanHoek
    Participant

    Sorry Timmi, we don't know everything. Glad it worked out fine.


    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 20, 2014 at 1:28 pm in reply to: Archive Title in Magazine Pro #110824
    JanHoek
    Participant
    function display_category_archives_description () {
    if (is_category() ) {
    echo category_description( $category-id );
    }}
    add_action( 'genesis_before_loop', 'display_category_archives_description');

    This should do the trick


    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 20, 2014 at 1:25 pm in reply to: Fixing menu structure #110823
    JanHoek
    Participant

    Just change the width of .site-header .widget-area til its small enough


    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 20, 2014 at 1:22 pm in reply to: Specifics On Home Page #110822
    JanHoek
    Participant

    Let's give it a try

    body.home .entry {
         min-height: 600px;
         max-height: 600px;
    }
    
    body.home .sidebar {
        min-height: 600px;
        max-height: 600px;
    }

    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 20, 2014 at 1:08 pm in reply to: Introduction and Question #110820
    JanHoek
    Participant

    That's the first image you put in the post. Just change it or put another one first.


    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 20, 2014 at 12:58 pm in reply to: Introduction and Question #110817
    JanHoek
    Participant

    Look for this in your style.css en remove it,

    .genesis-grid h2.entry-title, .genesis-grid h2.entry-title a {
    font-size: 24px;
    line-height: 32px;
    }

    after that look for

    .entry-content p {
        padding: 0 0 25px;
    }

    and add

      font-size: 14pt;
        font-family: 'courier new', courier;
        color: #808080;

    So it looks like

    .entry-content p {
        padding: 0 0 25px;
        font-size: 14pt;
        font-family: 'courier new', courier;
        color: #808080;
    }

    If you want more customization maybe it's better to hire a developer.

    Good luck


    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 20, 2014 at 12:48 pm in reply to: Sticky post not sticky enough #110815
    JanHoek
    Participant

    Did you use a custom grid_loop? Try to add the following code to your functions.php And save the "sticky" post again

    add_filter( 'posts_results','child_query_is_home' );
    
    function child_query_is_home( array $args ) {
    	global $wp_query;
    	$wp_query->is_home = true;
    	return $args;
    }

    I don't know if this works but we can give it a try.

    Properly it got something to do with some custom code in your functions.php


    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 20, 2014 at 12:37 pm in reply to: Introduction and Question #110810
    JanHoek
    Participant

    Just put it at the end of your style.css file. You can find this in your child-theme folder.


    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 20, 2014 at 12:12 pm in reply to: Removing page titles but not blog post titles #110804
    JanHoek
    Participant
    //* Remove page title for multiple pages
    
    add_action( 'get_header', 'child_remove_page_titles' );
    function child_remove_page_titles() {
        $pages = array( 2, 38, 25 );
        if ( is_page( $pages ) ) {
            remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
        }
    }

    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 4:13 pm in reply to: Custom Header #110661
    JanHoek
    Participant

    You're welcome.


    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 3:30 pm in reply to: Horizontal Scroll #110655
    JanHoek
    Participant

    Did you solved it? It's was/is in your form in your sidebar


    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 2:44 pm in reply to: Centering Logo and Navigation Menu in Executive Theme #110648
    JanHoek
    Participant

    Have you read his post? http://www.studiopress.community/topic/how-do-you-design-a-header-like-this/


    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 2:41 pm in reply to: Ambiance Pro Images on Homepage #110646
    JanHoek
    Participant

    Checked it in firefox and safari and looks good.


    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 2:35 pm in reply to: Ambiance Pro Images on Homepage #110644
    JanHoek
    Participant

    The recommended size is 800 x 450 or 1600 x 900

    In Chrome they look perfect 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 19, 2014 at 2:22 pm in reply to: Horizontal Scroll #110634
    JanHoek
    Participant

    There are some unclosed </div> and empty </section> in your sidebar


    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 2:13 pm in reply to: Ambiance Pro Images on Homepage #110630
    JanHoek
    Participant

    Thats looks good and should work. I see that you uploaded different size images. Try to Regenerate your Thumbnails this would give your images the proper size.


    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 - 141 through 160 (of 199 total)
← 1 2 3 … 7 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