spr1101
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twelve] Nextgen Gallery display issuei have the same problem. can you tell me if the changes go in the new folder that you say to create? I’ve tried everything and nothing is working.
Forum: Themes and Templates
In reply to: Parent page displaying child pages in post formatAfter a lot of experimenting I figured out how to do what I wanted and here’s the code excerpt in case anyone is interested:
<?php /*global $post;*/ $mypages = get_pages( array( 'child_of' => $post->ID, 'sort_column' => 'post_date', 'sort_order' => 'desc' ) ); foreach ($mypages as $post) : setup_postdata($post); ?> <div> <br /> <a href="<?php the_permalink();?>"><?php the_title();?></a> <?php the_excerpt(); ?> </div> <?php endforeach; ?>Forum: Themes and Templates
In reply to: attempting to make twentytwelve child theme non-responsiveI’ve managed to fix this. What I did was take everything from the parent theme for
@media screen and (min-width: 600px)and put it in my child theme’s stylesheet under@media screen and (min-width: 10px). Then, in order to eliminate unnecessary code I started removing bits and retesting.Everything’s well now.
Forum: Themes and Templates
In reply to: Fresh and Clean themeMy appologies, i accidentally posted here. But now that I’m here.. hmm my first suggestion would be to get firebug installed for firefox and take a look at what styles are being applied. This way you can see whether your styles are being overwritten.