Community Forums › Forums › Archived Forums › Design Tips and Tricks › Need help creating a 3 column grid.
- This topic has 4 replies, 2 voices, and was last updated 10 years, 10 months ago by Aticus21.
-
AuthorPosts
-
January 24, 2014 at 5:15 pm #86892Aticus21Member
What I would like to do is have a 3 column grid under my banner you can see Here
I'm following a tutorial that you can find Here
The problem i'm running into is when I change the value to 3 in my functions.php // Alter this number to change the number of columns - used to add class names
$columns = 3;the width of the post change but they don't display in a grid. Not sure why it wont work correctly. I don't know much about php so maybe someone who has more of an understanding could help me with this.
Below is the css for the grid.
Styles:
/* Featured Post Grid
Link: http://my.studiopress.com/tutorials/genesis-grid-loop/
--------------------------------------------- */.genesis-grid-even {
float: right;
padding: 0 0 15px;
width: 48%;
}.genesis-grid-odd {
clear: both;
float: left;
padding: 0 0 15px ;
width: 48%;
}.genesis-grid-even,
.genesis-grid-odd {
margin: 0 0 20px;
}#content .genesis-grid {
float: left;
margin: 0;
padding: 15px 0 10px 3%;
}
#content .genesis-grid-column-1 {
clear: left;
padding-left: 0;
}
.size1of2 {
width: 48%;
}
.size1of3 {
width: 31%;
}
.size1of4 {
width: 22.5%;
}
.size1of5 {
width: 17.4%;
}
.size1of6 {
width: 14%;
}
/* Above widths assume 0 left padding on the first column, 3% left padding on all
subsequent columns, and a total sum of 99% to avoid browser rounding errors */Here is my functions.php
/**
* Add some extra body classes to grid posts.
*
* Change the $columns value to alter how many columns wide the grid uses.
*
* @author Gary Jones
* @author Bill Erickson
* @link http://code.garyjones.co.uk/genesis-grid-loop-advanced/
*
* @global array $_genesis_loop_args
* @global integer $loop_counter
*
* @param array $grid_classes
*/
function child_grid_loop_post_class( $grid_classes ) {global $_genesis_loop_args, $loop_counter;
// Alter this number to change the number of columns - used to add class names
$columns = 3;// Be able to convert the number of columns to the class name in Genesis
$fractions = array( '', 'half', 'third', 'fourth', 'fifth', 'sixth' );// Only want extra classes on grid posts, not feature posts
if ( $loop_counter >= $_genesis_loop_args['features'] ) {
// Make a note of which column we're in
$column_number = ( ( $loop_counter - $_genesis_loop_args['features'] ) % $columns ) + 1;// Add genesis-grid-column-? class to know how many columns across we are
$grid_classes[] = sprintf( 'genesis-grid-column-%d', $column_number );// Add one-* class to make it correct width
$grid_classes[] = sprintf( 'one-' . $fractions[$columns - 1], $columns );// Add a class to the first column, so we're sure of starting a new row with no padding-left
if ( 1 == $column_number )
$grid_classes[] = 'first';
}return $grid_classes;
}
http://beasomdesign.com/January 24, 2014 at 11:45 pm #86916Davinder Singh KainthMemberUse grid loop plugin http://wordpress.org/plugins/genesis-grid-loop/ (you can also integrate code from plugin into your theme). See implementation here - stuffselect.com
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesJanuary 25, 2014 at 4:22 pm #87001Aticus21MemberThe grid loop plug in works great but my only issue with it is how would I make my home page display only one category? Is there a way to make a category page a home page?
January 26, 2014 at 6:15 am #87063Davinder Singh KainthMemberTry solutions here - http://wordpress.stackexchange.com/questions/84417/show-specific-category-posts-on-genesis-framework-home-page
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesJanuary 26, 2014 at 11:00 am #87104Aticus21MemberSo I was looking at your solution and came across this. - http://wpsmith.net/2013/genesis/genesis-grid-loop-in-genesis-1-9/
Now from that my understanding is that I have to add.if ( function_exists( 'genesis_grid_loop' ) ) { genesis_grid_loop( array( 'features' => 0, 'feature_image_size' => 0, 'feature_image_class' => 'alignright post-image', 'feature_content_limit' => 0, 'grid_image_size' => 'thumbnail', 'grid_image_class' => 'alignleft', 'grid_content_limit' => 250, 'more' => __( '[Read more...]', 'child-domain' ), ) ); } else { genesis_standard_loop(); }
to my home.php Correct?
Also I have to add
<?php add_action( 'pre_get_posts', 'wps_include_cat_in_grid' ); /** * Limit Query to one Category * * @author Bill Erickson * @author Travis Smith * @link http://www.billerickson.net/customize-the-wordpress-query/ * @link http://wpsmith.net/2013/genesis/genesis-grid-loop-in-genesis-1-9/ * @param object $query WP Query data * */ function wps_include_cat_in_grid( $query ) { if( $query->is_main_query() && wps_is_doing_grid_loop() ) { $query->set( 'cat', '4' ); } }
to my functions.php correct?
If I wanted to add the code above into lets say grid.php to keep my functions.php clean do I need to do anything else for WP to find the code?
-
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.