Forum Replies Created
-
AuthorPosts
-
ellaj
CustomerSetting it to one doesn’t work because some had the first word as ‘A’. I used the CSS. Thank you.
February 17, 2014 at 3:29 pm in reply to: How can I have the style.css file show up under Appearance -> Editor? #10737ellaj
CustomerHi,
I am using HostGator for this site and they don’t deactivate it. Any other ideas?
(Sorry it took so long to reply…on vacation.) ๐
Thanks!February 8, 2014 at 1:44 pm in reply to: How can I have the style.css file show up under Appearance -> Editor? #10501ellaj
CustomerI had it installed on this particular site and deactivated it, but it is still not showing up. I have Jetpack installed on another site using Epik and I can see the style.css file in the Editor.
ellaj
CustomerYes, I did that but I placed the links under the wrong nav item. Oops! Sorry about that. ๐
ellaj
CustomerThanks! The next one I’m working on is great too. ๐
ellaj
CustomerThanks, Eric.
I have 1.3 for my new site. I fixed all of the issues I was having…I realized I had to make the images the exact same as the slider to make it work properly. I also changed the css to center the image so it wasn’t floating left.
Thank you!ellaj
CustomerThis reply has been marked as private.ellaj
CustomerGreat. Thank you so much!
ellaj
CustomerForgot about that plugin. Thank you!
ellaj
CustomerI found this tutorial, http://www.billerickson.net/a-better-and-easier-grid-loop/, but I’m not sure how to change it so the three columns are only on the home page.
/**
* Archive Post Class
* @since 1.0.0
*
* Breaks the posts into three columns
* @link http://www.billerickson.net/code/grid-loop-using-post-class
*
* @param array $classes
* @return array
*/
function be_archive_post_class( $classes ) {// Don’t run on single posts or pages
if( is_singular )
return $classes;$classes[] = ‘one-third home’;
global $wp_query;
if( 0 == $wp_query->current_post || 0 == $wp_query->current_post % 3 )
$classes[] = ‘first’;
return $classes;
}
add_filter( ‘post_class’, ‘be_archive_post_class’ );Any help would be much appreciated.
-
AuthorPosts