asechrest
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: sidebar – moved to bottom after new post.It looks to me like you’ve forgotten to close your
<img>tag in that post. Here’s your applicable section of code:<div class="entry"> <p align="left"><img height="96" width="96" alt="Nico M" id="image6" src="http://nicomorrison.com/WordPress/wp-content/uploads/2009/03/nico-icon11.jpg" /></p>Forum: Plugins
In reply to: Select all posts from author A, author B and author C – at the same timeThe WordPress query_posts function allows restriction by author(s).
Unless I’m mistaken, it would be something like:
query_posts('author=1,4,6')This should be used just prior to a WordPress Loop.
Forum: Fixing WordPress
In reply to: Little “1” icon next to PluginsThat is an indication of the number of plugins that have an update available. If you click to your plugins list and scroll through them, you’ll find that one of the plugins has an option to update to a new version.
Forum: Fixing WordPress
In reply to: Number of posts in the home pageDid you take any action based on MichaelH’s suggestion? If so, what specifics things did you do?
Did you check the front page template to see if it was hard-coded?
Forum: Fixing WordPress
In reply to: How To: Remove author name from each post?Remove this line of code:
<p class="post_author">by <?php the_author(); ?></p>To remove it from all instances of a post, you’ll need to remove it from index.php, single.php, etc.
Has this not worked for you?
Forum: Fixing WordPress
In reply to: Feed and CDATA ErrorThanks. I’ll have to take a look after work. As far as I know nothing filters my RSS output. I’ll look in functions.php a bit later, then maybe start randomly removing plugins to see if that fixes it.
Thanks for the input and maybe I’ll have a solution later tonight.
Forum: Fixing WordPress
In reply to: Feed and CDATA ErrorHad my feed come back up, then start throwing this error again. Would make me think potentially it’s feedburner, except that it’s actually pointing to an error on a line of code.
Some Google results indicate it could have something to do with my Javascript declarations but I’m searching in the dark on this one.
Forum: Requests and Feedback
In reply to: Akismet Spam FIlter and CommentsGreg’s Comment Length Limiter let’s you limit comment length.
Forum: Fixing WordPress
In reply to: Define categories users can post to.Can see if Level2Categories will do what you want.
Forum: Fixing WordPress
In reply to: Text is in Bold on Site’s Main PageCheck the posts on that first page in HTML view and see if you’ve forgotten to close a
<strong>or<b>tag. That this only occurs on that 1st page would suggest to me that it’s in one of those posts.If it’s not there, you can start checking your theme file code and/or text widgets, etc. for the missing tag.
I’ve done this before in both a post and in my code.
Forum: Fixing WordPress
In reply to: Why is my sidebar underneath my post? I’m on a deadline for a clientPotentially, yes. I had my sidebar wrap below my content section one time when a widget I was using was sized too large.
It’s worth a shot temporarily removing those pics to see if that remedies the problem.
Forum: Fixing WordPress
In reply to: T_ELSE Error When Editing a PostSorry, link to post.
Forum: Fixing WordPress
In reply to: Why is my sidebar underneath my post? I’m on a deadline for a clientRe: finding an unclosed div tag.
You open your applicable theme files (index.php, sidebar.php, etc.), and start searching through it for unclosed
<div>tags. You can use the find function or however you see fit.Forum: Fixing WordPress
In reply to: Why is my sidebar underneath my post? I’m on a deadline for a clientIt could be a number of problems.
First, you’ve forgotten to close an img tag on line 128 of your page source. It’s the img tag for:
http://www.albereo.com/img/sm_double_stars.jpg. Close that tag, see if it fixes it.Next, validate your site (skip to part 2 if part 1 is below your skill level).
If that still doesn’t fix it, play around with your content and sidebar widths to see if that works.
And if it’s still not fixed, I’m out of ideas. 🙂
Forum: Themes and Templates
In reply to: Adding transparent space below menuWeb Developer Toolbar. Adds a toolbar with, among other things, and dropdown CSS menu that allows you to play with your CSS code and see immediate changes without actually editing the file. So you could add those margins, play around with the px size, see which looked best, then when you’ve settled on the correct code, go in to your style.css and change it.
It’s nice.