Forum Replies Created
-
AuthorPosts
-
JanHoek
ParticipantFirst change the top margin from your site-inner
.site-inner { background-color: #fff; clear: both; padding-top: 80px;
And for your Header, you have to change the .header-image .site-title css. This depends on the size of your logo. But something like;
.header-image .site-title a { height: 80px; display: block; margin-top: 20px; text-indent: -9999px; max-width: 320px;
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 7, 2014 at 2:38 pm in reply to: getting rid of default list items Parallax Pro Pricing Table #108469JanHoek
Participantdiv.pricing-table ul > li { list-style-type: none;
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 use the Excerpts, try this instead of the one you use
// Add Read More Link to Excerpts add_filter('excerpt_more', 'get_read_more_link'); add_filter( 'the_content_more_link', 'get_read_more_link' ); function get_read_more_link() { return '... <a href="' . get_permalink() . '">[Read More]</a>'; }
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
ParticipantRemove all the CSS you added, start with the de default .genesis-nav-menu styles.
And just edit these two;
.genesis-nav-menu { clear: both; color: #999; font-family: Lato, sans-serif; line-height: 1.5; width: 100%; font-size: 16px; font-size: 1.6rem; text-align: center; } .genesis-nav-menu .menu-item { display: inline-block; text-align: center; }
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 gray "border" is coming from the background-image
.search-form input[type="search"] { background: url(images/search.png) no-repeat 15px 16px; padding: 16px 16px 16px 44px; border: 0; }
and this style
/* Forms
--------------------------------------------- */input, select, textarea { background-color: #f5f5f5; border: 1px solid #ddd; box-shadow: 0 0 5px #ddd inset; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; padding: 16px; width: 100%; }
To change the text you can put this in your functions.php
//* Customize search form input box text add_filter( 'genesis_search_text', 'sp_search_text' ); function sp_search_text( $text ) { return esc_attr( 'Search my blog...' ); }
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 not refresh my browser before I posted a answer. You Already got some help I see. Sorry.
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
ParticipantGlad 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.
JanHoek
ParticipantI see the line
body.page-id-707 {
background: #000;
}but 707 is not an ID number on your website.
I tried ID 65 (your service page ) and worked perfect
body.page-id-65 {
background: #333;
}
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 can do this with some extra style in your CSS:
Example
body.page-id-11 { background: #000; } body.page-id-22 { background-image: url("background.jpg"); }
Change the page ID number with the page number you like to change. Preview the page in the dashboard. Then you`ll see the ID in the url
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
ParticipantCan you post your url of your site please? I want to take a look at your homepage before I try/post something.
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
ParticipantPlease post your URL Mike, so we can take a look.
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.genesis-nav-menu .menu-item { display: inline-block; text-align: center; float: right; }
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
ParticipantThanks Sridhar, this is exactly what I needed. The simple things are hardest to find.
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
ParticipantSometimes browsers not rendering the 62.5% font-size correctly, used in Genesis Themes. Look at the post from Surfire http://surefirewebservices.com/development/genesis-framework/genesis-rem-chrome-font-size-bug
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
ParticipantDo you use Chrome and Google fonts?
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 can give Contact a custom Class in your Dashboard-Appearance -Menu and than style it in your style.css If you make the "button" much bigger than you probably need to do some extra styling in your navigation.
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
ParticipantTake a look at this post from Greg. http://gregrickaby.com/add-social-media-icons-to-genesis-without-a-plugin/
Follow the instructions and replace if ( is_single with if ( is_home or if ( is_front_page on line 19
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.
May 1, 2014 at 5:23 am in reply to: Generate theme: Front page shows both the featured image and the in-post image #103171JanHoek
ParticipantTry to put this in your functions.php
add_filter('the_content','image_content_filter',11); function image_content_filter($content){ if (is_home() || is_front_page()){ $content = preg_replace("/<img[^>]+\>/i", "", $content); } return $content; }
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