Forum Replies Created
-
AuthorPosts
-
June 21, 2014 at 11:55 am in reply to: How to add place for wide google ad in Lifestyle theme? #110970
JanHoek
Participantyou'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.
JanHoek
ParticipantEmasai, 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.
JanHoek
ParticipantI 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.
JanHoek
ParticipantI 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.
JanHoek
ParticipantSorry 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.
JanHoek
Participantfunction 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.
JanHoek
ParticipantJust 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.
JanHoek
ParticipantLet'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.
JanHoek
ParticipantThat'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.
JanHoek
ParticipantLook 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.
JanHoek
ParticipantDid 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.
JanHoek
ParticipantJust 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.
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.
JanHoek
ParticipantYou'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.
JanHoek
ParticipantDid 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.
JanHoek
ParticipantHave 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.
JanHoek
ParticipantChecked 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.
JanHoek
ParticipantThe 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.
JanHoek
ParticipantThere 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.
JanHoek
ParticipantThats 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.
-
AuthorPosts