joyced
Forum Replies Created
-
Forum: Themes and Templates
In reply to: theme background color adjustmentAlso, does anyone know of a website where you can enter a color in the form of, #003a72, for example, and it will show you what color it is?
Forum: Fixing WordPress
In reply to: Turn back on preview like in the old versions.There’s this plugin: http://robm.me.uk/projects/plugins/wordpress/preview-frame
Forum: Fixing WordPress
In reply to: get_posts – Return the 5 most recent post.This works for me:
<?php query_posts('showposts=5'); ?> <ul> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>Forum: Themes and Templates
In reply to: How Do I change the headerLook for #header in your CSS. Change ‘img/westieheader.jpg’ to ‘http://www.letterfromwales.com/letterIreland_header.jpg’, and ’80px’ to ‘145px’.
Forum: Fixing WordPress
In reply to: How do I add – Posted By w/ time stamp on postsForum: Fixing WordPress
In reply to: how to remove category slugIt’s possible with this plugin: http://fortes.com/projects/wordpress/top-level-cats/
Forum: Plugins
In reply to: new pluginsI use about 30 plugins, so I don’t think there’s a limit.
Forum: Fixing WordPress
In reply to: Error: Can’t open file: ‘wp1_posts.MYI’Well, that was simple enough. ‘REPAIR TABLE wp1_posts’ worked like a charm. Thanks a bunch!
Forum: Plugins
In reply to: All posts of month not showingThere’s a plugin for this, Custom Query String.
Forum: Plugins
In reply to: Plugin for most recent commented postYou can configure Get Recent Comments by Krischan Jodies to do this. http://blog.jodies.de/archiv/2004/11/13/recent-comments/
Forum: Plugins
In reply to: Category Post CountsAlstatten, my previous reply was actually directed to you. Add this line to your CSS:
li.Categories li a { display: inline }Forum: Plugins
In reply to: Category Post CountsI think the problem is that the links to the categories are displayed as blocks (
display: blockin your CSS), this forces the post counts to the next line. There’s a line in your CSS that was probably put there to prevent this (#l_sidebar ul.categories li a {display: inline;}) but it doesn’t work because it should sayli#categoriesinstead oful.categories. Hope that helps.Forum: Themes and Templates
In reply to: Horizontal way for wordpressHmm, that’s weird, whooami’s post didn’t show until after I posted my reply.
Forum: Themes and Templates
In reply to: Horizontal way for wordpress“To enjoy you too the Horizontal Way karma I created a template with scripts (HTS & other tips) included”
http://www.thehorizontalway.com/download/THW_template_0.6.zip
Forum: Plugins
In reply to: dont want to ping when editing old postI use 2.1.2 as well and it works for me. Maybe there’s some kind of conflict with other plugins you’re using? I don’t know.