mithrustt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Recent Posts CodeI got the recent post code up and working for the most part. The one thing is that it isn’t formatted like the rest of the stuff in the sidebar. Did I miss something?
And, is it possible to not only have it show one category, but show the most popular posts in that category? Like, say I want to show no more than 5 posts, but their not actually the most recent posts in that category, but the ones with the most comments. Possible? Not possible?
Forum: Fixing WordPress
In reply to: Recent Posts CodeI forgot to mention that I only wanted to have only one category of posts show up in the recent posts section. Is there a way to add code to the wp_get_archives() template tag?
Forum: Fixing WordPress
In reply to: Recent Posts CodeForum: Fixing WordPress
In reply to: Site Messed UpSorry I made this thread, I just fixed it. I was simply missing a bracket.
Forum: Fixing WordPress
In reply to: Getting text to form around imagesI have that leftpic thing you mentioned in the other thread, but it pushed the text down below the image instead of beside it.
And I don’t want to have to edit the code in the post every time, I rather just select align left when inserting the image.
Forum: Fixing WordPress
In reply to: Getting text to form around imagesHow can I get it so there is padding on the right side of the image in posts only if it is aligned on the left side? I just want it so the text isn’t right up against the image when it wraps around it.
Forum: Fixing WordPress
In reply to: Getting text to form around imagesFigured it out. Before, I was only adding one <br class=”clear” />. I just added several more to stretch the post background out more.
Forum: Fixing WordPress
In reply to: Getting text to form around imagesI took the <br class=”clear”> out after it didn’t work. I’ll add it again, though to show you guys.
Forum: Fixing WordPress
In reply to: Getting text to form around imagesI added that to the post, but it didn’t really work. I tried it in different places, but it wasn’t working.
Forum: Fixing WordPress
In reply to: Getting text to form around imagesI found a
clear: both;
in the footer section of the stylesheet. Does that mean I have to add the:
.clear{
clear: both;}to the entry section of the style sheet?
Forum: Fixing WordPress
In reply to: Getting text to form around imagesThanks for that. Everything seems to work normal with one exception. When there is a large image with very little text, the entry background only stretches to the height of the text in the post, but ignores the image.
As a result, it looks really messed up. To see what I mean, look at the only post with a picture on my site here:
Forum: Themes and Templates
In reply to: Posted By Code (author not displayed)I looked through that one and realised I didn’t have the author part of the code. I added that in and cleaned it up a bit, but it still hasn’t changed. Here’s what I have now:
<h3><?php the_time('F jS, Y'); ?> by <?php the_author(); ?> in <?php the_category(', '); ?> <strong> </strong> <?php edit_post_link('Edit','','<strong></strong>'); ?> </h3>Forum: Themes and Templates
In reply to: Posted By Code (author not displayed)I added them in, but that didn’t seem to fix it.
Forum: Fixing WordPress
In reply to: Transferring one WP install to anotherAh, thank you! You solved my problem.