Forum Replies Created
-
AuthorPosts
-
bandj
Memberyou have to make adjustments in the @media portion.
at the first break 1139px your .site-header .widget-area has padding-top: 150px; You can make that smaller, even 0.
Then use css to position the logo and menu.
August 5, 2014 at 1:25 pm in reply to: Is this my child theme or Gensis? (Next Page & Resizing Images not Working) #117195bandj
Memberwhere did you put in the custom sizes? Did you run the regenerate thumbnails plugin?
bandj
MemberI guess one question would be do you want the blue CNC logo clickable?
bandj
Memberbandj
MemberDid you upgrade Genesis?
bandj
Memberthat is your breadcrumb. Go to Genesis/theme settings and unclick breadcrumbs on home page.
bandj
Member1. Change the js file to this and notice where you have to put "categories"
jQuery(function( $ ){
// add js body class
$('body').addClass('js');// find time for each entry and move it inside the image link
$('.home-middle article, .home-top article').each(function(){
var $time = $(this).find('.entry-categories');$(this).find('a.alignleft, a.alignnone, a.alignright').append($time);
});
});
2. In the featured post widget where it says show post title show post info, in the box below add this
[post_categories before=""]
mine now looks like this: [post_date] By [post_author_posts_link] [post_comments] [post_categories before=""]. The 2 quotes at the end eliminates the words "filed under". You can add text between the quotes.
3. In your css where you find
.js .content .home-middle a .entry-time,
.js .content .home-top a .entry-timeAdd this:
.js .content .home-middle a .entry-categories,
.js .content .home-top a .entry-categoriesThen add this in your css also for font color
.js .content .home-middle a .entry-categories a,
.js .content .home-top a .entry-categories a {
color: #fff;
}We can thank Amelia Briscoe Technical Support Advocate for this as we went through a few emails to get this right.
July 30, 2014 at 5:31 pm in reply to: Changing Post Meta Data Overlaid on Images on Magazine Pro Theme #116386bandj
Member1. Change the js file to this and notice where you have to put "categories"
jQuery(function( $ ){
// add js body class
$('body').addClass('js');// find time for each entry and move it inside the image link
$('.home-middle article, .home-top article').each(function(){
var $time = $(this).find('.entry-categories');$(this).find('a.alignleft, a.alignnone, a.alignright').append($time);
});
});
2. In the featured post widget where it says show post title show post info, in the box below add this
[post_categories before=""]
mine now looks like this: [post_date] By [post_author_posts_link] [post_comments] [post_categories before=""]. The 2 quotes at the end eliminates the words "filed under". You can add text between the quotes.
3. In your css where you find
.js .content .home-middle a .entry-time,
.js .content .home-top a .entry-timeAdd this:
.js .content .home-middle a .entry-categories,
.js .content .home-top a .entry-categoriesThen add this in your css also for font color
.js .content .home-middle a .entry-categories a,
.js .content .home-top a .entry-categories a {
color: #fff;
}We can thank Amelia Briscoe Technical Support Advocate for this as we went through a few emails to get this right.
bandj
MemberCould you explain what you did?
bandj
MemberThose are the ones yes. And that works. Thank you, it was driving me nuts.
July 29, 2014 at 3:55 pm in reply to: Looking for Slider that handles video as well as images #116277bandj
MemberAnother vote for Rev slider. Pretty easy to use also.
bandj
MemberFind this:
.agency-pro-home .content .featuredpost .entry {
background: none;
float: left;
width: 33.33334%;
}try changing the width to 50%. If you're at 1140px wide your images will have to be at least 570px wide.
bandj
Memberit looks like song of style is parked now. Looking at the wayback machine they had a white fixed header with the wrap semi transparent. You could do that like this:
body {
background: #f8f8f8;
}.site-header {
background-color: rgba(255, 255, 255, .9);you'll have to change your font color and you're nav colors
.site-title a {
color: #222;
}July 29, 2014 at 9:33 am in reply to: Changing Post Meta Data Overlaid on Images on Magazine Pro Theme #116222bandj
Memberjust sent one. We'll see what they say
July 29, 2014 at 8:58 am in reply to: Changing Post Meta Data Overlaid on Images on Magazine Pro Theme #116217bandj
MemberI changed the .entry-time parts to category but that doesn't work. This looks like it works on elements so I don't know how to target the categories.
bandj
MemberHarold, right now I put a plugin in there called menufication. But I am going to give this by Sridhar a go also.
bandj
MemberSounds like I'm confusing a category page with an archive page. What is the difference?
I did get it working though by adding this:
//* Move image above post title
remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
add_action( 'genesis_entry_header', 'genesis_do_post_image', 3 );Thanks
bandj
MemberYou actually have 4 in there including the "Your Website Needs To Be...". And they all have a class of .home-section-2 .widget. Can you post your front-page.php.
bandj
MemberGreat answer. Thanks
bandj
MemberThanks Kelly. Just adding the full width force on the front page just removed the sidebar. The grid still stayed at 2 columns. But you got me looking at some things and I found a plugin on gist by Bill Erikson which is working on the category archive pages, Very Cool!. Now I'm thinking of using that for the homepage somehow.
-
AuthorPosts