kristopherives
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Deleting a page is suppose to be easy right?If you’re using Google Chrome or any other Gears enabled browser make sure you it’s not cached there either!
Forum: Fixing WordPress
In reply to: Paragraph breaks disappear in FireFoxWell, I was going to be a jerk and tell you to do it, but with FireBug this was very easy. You really should install FireBug. All I had to do was hover over the P link to get a full list of it’s CSS properties!
The problem is with this CSS rule:
* {
margin-top: 0;
}When I click the disable/enable icon in FireBug it fixed the problem when I disabled that rule. Here is a screenshot: http://s5.tinypic.com/15zldte.jpg
Just remember to turn FireBug off when not debugging as it slows down JavaScript.
Forum: Fixing WordPress
In reply to: Doesn’t upload mediaYou probably don’t have write access to that folder on the host machine. Log into the FTP and go to the wordpress/wp-content directory and check if you have write access enabled.
Also, some hosts don’t let you upload certain file types. Does it work with images but not movies?
Forum: Fixing WordPress
In reply to: Cant comment on my blogWhen I tried to comment I noticed it said in the URL that forwarded “incorrect captcha”. I didn’t see a CAPTCHA (those are the little scrambles of text that you have to decipher to prove you are human) to solve though.
Forum: Fixing WordPress
In reply to: Permalink randomly redirects to page_id=xIn my .htaccess I disable MutiView which may be causing this issue. This article describes how they work and why they might be causing the issue:
http://www.gerd-riesselmann.net/archives/2005/04/beware-of-apaches-multiviews
I also wrote about this when I enabled permalinks on a GoDaddy account: http://santiance.com/kris/2009/permalinks-on-godaddy/
Forum: Fixing WordPress
In reply to: Done, but with errors on the page.I don’t use IE so I don’t know what errors you’re talking about. Are these CSS/HTML validation errors or Javascript errors when the page is viewed?
I checked out the page and it had this scripting error in FireFox:
Error: jQuery(“div.wpcf7 > form”).ajaxForm is not a function
Source File: http://www.leoncamp.nl/wp-content/plugins/contact-form-7/contact-form-7.js
Line: 5Internet Explorer isn’t standards compliant for CSS or HTML. I would recommend using the W3C validator and using the clean and simple ways to make it work in IE, most of which you can find on alistapart.com. For example, in your stylesheet only specify VALID code. When you need to make hacks to make IE work simply create a stylesheet that only gets included using IE conditional HTML comments.
Forum: Fixing WordPress
In reply to: Paragraph breaks disappear in FireFoxThe P tags are there but the paragraph breaks for FireFox aren’t. This is likely because of the CSS in your theme.