hmcke
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding featued images to older themes.It is a pretty old theme, do you have suggestions as to what may be similar.
Otherwise, where exactly in the loop do I add the line?
Thanks for your suggestions.
Forum: Fixing WordPress
In reply to: Grid style layout for post listsI would also love to do this but am having trouble..
my default archives.php is as follows:
<?php get_header(); ?> <?php if (have_posts()) : ?> <div class="grid_12 title"> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> <h1 class="description">Archive for the ‘<?php single_cat_title(); ?>’ Category</h1> <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?> <h1 class="description">Posts Tagged ‘<?php single_tag_title(); ?>’</h1> <?php /* If this is a daily archive */ } elseif (is_day()) { ?> <h1 class="description">Archive for <?php the_time('F jS, Y'); ?></h1> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> <h1 class="description">Archive for <?php the_time('F, Y'); ?></h1> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> <h1 class="description">Archive for <?php the_time('Y'); ?></h1> <?php /* If this is an author archive */ } elseif (is_author()) { ?> <h1 class="description">Author Archive</h1> <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <h1 class="description">Blog Archives</h1> <?php } ?> </div> <div class="grid_12 content"> <div class="grid_1 alpha"> </div> <!-- end .grid_1 --> <div class="grid_8"> <?php while (have_posts()) : the_post(); ?> <div class="post rounded"> <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> <p class="postmetadata"> <?php the_time('F jS Y') ?><br /> <?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> </p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('← Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries →') ?></div> </div> <?php else : ?> <h1 class="center">Not Found</h1> <?php include (TEMPLATEPATH . '/searchform.php'); ?> <?php endif; ?> </div> <!-- end .grid_8 --> <div class="grid_3 omega"> <?php get_sidebar(); ?> </div> <!-- end .grid_3 --> </div> <!-- end .grid_12 --> <div class="clear"> </div> <?php get_footer(); ?>
But I cant for the life of me work out where to put the code as mentioned above.
Any help would be much appreciated.
Forum: Themes and Templates
In reply to: Font size for single post/pagethanks spivurno,
that seems to have done it.
All your input is much appreciated! thanks guys.
Forum: Themes and Templates
In reply to: Font size for single post/pageHi Jakeyy,
Thank you for the adviceWith my limited CSS I tried something along the lines of..
div.post rounded { {font-size: 12px;} }
no go ??
Forum: Themes and Templates
In reply to: Font size for single post/pageCheers Peter,
I gave it a try but found that when I upped the percentage to say 100%
Although the single post and page php looks better it has made the index.php text look ridiculously big.
Any ideas how I might over come this? keeping the font sizes separate?
Forum: Fixing WordPress
In reply to: Center all sidebar widgets?Hi Dene, thank you for your reply
Although that seemed to leave all the text nicely centered it didn’t center the widget itself.
In my own poor attempts at css I tried adding this..
.fw_tabs_tabdisplay first{margin-left: .75em;}
Though that didnt seem to do it.
Any advice would be much appreciated