Forum Replies Created
-
AuthorPosts
-
JanHoek
ParticipantA big imgae or a background image (with structure) that yu can repeat. But it already looks pretty good on your site.
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 see an error ( Notice: Undefined index ) in the top of your page. Their is a plugin conflict/error with WordPress. Deactivate your plugins and see if it solves the problem
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.
August 16, 2014 at 2:02 pm in reply to: Using h2 instead of h1 for post titles in Genesis Grid loop #119241JanHoek
ParticipantYou can try this in your functions.php
add_filter( 'genesis_post_title_output', 'jan_post_title_output', 10 ); function jan_post_title_output( $title ) { if ( is_home () || is_category() || is_singular () || is_archive () ) $title = sprintf( '<h2 class="entry-title" itemprop="headline">%s</h2>', apply_filters( 'genesis_post_title_text', get_the_title() ) ); $title = sprintf( '<a href="%s" rel="bookmark">%s</a>', get_permalink(), $title ); return $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
ParticipantHow did you build this theme. Dynamik?
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
ParticipantIs this solved? Because it looks good to me.
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.footer-widgets .wrap {
width: 1000px;
}
or smallerAnd make the footer widgets smaller. Don't forget to make them also smaller in the media 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.
JanHoek
Participantreplied again to muzieklesstadshagen @ gmail.com
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 read the mails I send 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.
JanHoek
ParticipantDid you try this? https://gist.github.com/srikat/8469908 I just it before and 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.
JanHoek
ParticipantOpen you style.css and change
.sidebar-primary a, .sidebar-primary a:visited { color: #FF6600; }
and
.entry-content a, .entry-content a:visited { color: #FF6600; }
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
ParticipantIf you CSS skills are good you can do it.
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.
August 11, 2014 at 9:44 am in reply to: Magazine Pro theme — facebook sharing excerpts aren't great… #118198JanHoek
ParticipantMaybe this s usefull http://wordpress.org/support/topic/how-to-hide-post-meta-when-sharing-on-facebook
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
ParticipantSuper. Glad I could help. Please close this post if it's solved. 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
ParticipantExplain it a bit better, I'm not sure what you mean. 🙂
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 did send you some mails yesterday. Didn't get them?
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
ParticipantNo. Use higher numbers in widgets-area. Like 12 and 15. The default of de nav is 10.
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.
August 9, 2014 at 2:21 pm in reply to: Change the width of the search bar on small screen sizes #117988JanHoek
ParticipantJanHoek
ParticipantRemove the borders from the css we discus earlier. Add the border to......
.site-header { border-bottom: 2px solid #222; } .nav-secondary { border-bottom: 2px solid #222; }
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
ParticipantMaybe this is helpfull http://thewpchick.com/genesis-for-podcasting-yep-perfect-for-podcasters-too/
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
ParticipantCreate a 2 different menus > logged-in and logged-out
Then add th following to your functions.php
function my_wp_nav_menu_args( $args = '' ) {
if( is_user_logged_in() ) { $args['menu'] = 'logged-in'; } else { $args['menu'] = 'logged-out'; } return $args; add_filter( 'wp_nav_menu_args', 'my_wp_nav_menu_args' );
I hope this works 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.
-
AuthorPosts