Forum Replies Created
-
AuthorPosts
-
JanHoek
Participantchange 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.
JanHoek
ParticipantHi 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.
JanHoek
ParticipantGlad 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.
JanHoek
ParticipantDoes 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.
JanHoek
ParticipantSee 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.
JanHoek
Participantremove 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.
JanHoek
ParticipantTry 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.
JanHoek
ParticipantAdd ( 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.
JanHoek
ParticipantI 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.
JanHoek
ParticipantYou 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.
JanHoek
Participanttry 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? #110144JanHoek
ParticipantHi, 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.
JanHoek
ParticipantSuper. 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.
JanHoek
ParticipantOk 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.
JanHoek
ParticipantYou'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.
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.
JanHoek
ParticipantIs 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.
JanHoek
Participantcolour = 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.
JanHoek
ParticipantYour 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.
-
AuthorPosts