Ryan Fitzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help with my one validation errorThat is odd.
Forum: Fixing WordPress
In reply to: Help with my one validation errorWhich link did you use? Mine is directly from the original one above. I just added on the line number to take you right there.
Forum: Fixing WordPress
In reply to: Help with my one validation errorForum: Fixing WordPress
In reply to: Help with my one validation errorI put it right before:
`<!– You can start editing here. –>
Forum: Fixing WordPress
In reply to: Help with my one validation errorI copied the code, put a closing
<div>for the above mentioned element and it passed.http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fryanfitzer.com%2Ftestvalidation.html
Forum: Fixing WordPress
In reply to: Help with my one validation errorOk, I went through and deleted all the properly closed
<div>s. What I was left with was an unclosed<div>for your post body<div class="post" id="post-60">… I think. Wait, I’m almost positive. The<div class="post" id="post-60">should close just before the comment form. Or, at least it does on the default template.Forum: Themes and Templates
In reply to: problems w next_post and previous_post in almost springI haven’t tested this but it’s a good place to start:
<div class="post_nav">
<?php next_posts_link('« Previous Entries | ') ?><a href="<?php echo get_settings('home'); ?>/">Home</a><?php previous_posts_link(' | Next Entries »') ?></div>
There is currently nothing on the page that the codex search returns when you search for these tags but I pulled from the default theme. I did change the html a bit so they all stay on the same line. Let me know if it works for you.
Forum: Fixing WordPress
In reply to: statsI have found google analytics to do a good job.
http://www.google.com/analytics/
It does entail pasting a bit of code in the footer.php file though. But it’s pretty simple.
Forum: Fixing WordPress
In reply to: Help with my one validation errorThere are a lot of
<div>elements to keep up with. If this was an error on my site I would go through and comment the begining and end of each of the<div>elements.example:
<!-- Begin Container -->
<!-- End Container -->I make it a practice for this reason and many others.
I tried looking through it but I lost track of what was open and what was closed pretty quickly.
Forum: Fixing WordPress
In reply to: Help with my one validation errorA link would help us to check this out.
Forum: Installing WordPress
In reply to: RSS buttonsThe way I do this is by registering my rss feed with http://feedburner.com
Then, in the publicize section, you can grab all the icons you want to all sorts of different services.
For delicious and the like you’ll have to register your blog with them as far as I know.
A link to the site would help a little more. Not sure why you would need to define a rule for an anchor element (
<a>) to beinline, it isinlineby nature.With a link I could diagnose it better.
Forum: Requests and Feedback
In reply to: Bug? Formatting for object or embed tagsi guess you should enter it in as bug then.
Forum: Fixing WordPress
In reply to: Validating Integrated WP within designWell, my only suggestion would be to use an
<iframe>until the book comes. Although, I am halfway through this book and I don’t think it will help on this problem. Your trying to push a square peg (WP) into a round hole (your existing site). It would be a lot easier to just alter a theme to have the look of your current site. Good luck.Forum: Fixing WordPress
In reply to: textarea tag not closing?By the way, I got this from here: