scribblerguy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: changing fontIf you’re editing the style.css inside WordPress, make sure that the file is writable and being saved.
Font-family is the correct value to change, but even if you set that for one element, a later declaration may override it. Take a look at the CSS-related links here: Know Your Source
Forum: Fixing WordPress
In reply to: Error with MessageThose threads were included more as a reference for others, in case they can help, as I don’t have any good ideas regarding the exact problem, so if I don’t reply, it’s because I don’t have anything useful to say.
Try switching to the default theme with all plugins deactivated. If the problem still occurs, then we can more-or-less rule out a plugin or theme conflict.
Try reinstalling WordPress. Backup your current installation, including the database and start with a fresh install and new database. Try replying to the “Hello World” post. If the problem still occurs, then, this more-or-less has to be a server configuration issue.
If that’s the case, then you should contact your webhost for help. If they don’t resolve the problem or won’t, then consider moving to a new host (I hope you didn’t pre-pay for a year).
Forum: Themes and Templates
In reply to: Header moves but content stays fixedFrom your style.css (cleaned up by putting each declaration on a new line):
#wrap { width: 100%; min-width: 600px; max-width: 800px; background: transparent; color: #333; font-size: 11px; font-family: Tahoma, Helvetica, Sans-Serif; margin: 0 0 0 320px; padding: 0;}Your posts and sidebar are inside the #wrap div. Currently, its left margin is set to 320px (the final number in the margin declaration), which means that its content will always be 320 pixels from the left edge. However, you have width declarations. The min-width setting is forcing the #wrap div to always be at least 600 pixels wide, even if the browser window is smaller than that.
A fluid (or liquid) layout in web design means that at least part of the content of a page varies in size depending on the size of the browser window (namely the width). Basically, by adding the min-width declaration, you removed the fluidity from your theme.
The margin, width, min-width, max-width declarations are the ones you’ll have to tweak. I’d drop the min- and max- width declarations.
And, I’d definitely drop the left margin of 320 pixels as this would make your theme much more friendly to normal sized monitors (i.e., 1024 pixel width).
Consider using Firefox with the Firebug extension. That extension allows you to inspect the CSS style of any element and turn off specific declarations.
Forum: Fixing WordPress
In reply to: Error with MessageDo you have an E-mail address I can contact you? I really appreciate the help!
No. Just post here.
You now have pretty permalinks working, which seems to rule out that.
If you’re logged in, when you submit a comment, does the error still occur? If so, please copy the error message. If the message shows up, please link to it. — I know this seems redundant, but when I submit a test comment, it doesn’t show up, so either (1) it’s being held in moderation; (2) it’s being tagged as spam by some filter; or (3) it’s not actually being saved to your database.
To clarify the OP’s problem, when someone submits a comment, instead of getting any WP error message or being redirected back to the original post, an error page is returned for
http://www.ezmealsonline.com/wp-comments-post.php—This Web site experienced a problem and your request could not be completed. Please try again.
Click here to return to the previous page.
Error Code: 500
This happens in Firefox 2.0.14, Opera 9.27, an IE7, so this doesn’t seem to be a browser-specific.
If this is some sort of server-specific issue, then that’s probably beyond my expertise level.
Some possibly related threads:
(1) ie6: Internal Server Error 500 & wp-comments-post.php which links to
status_header(500) problem with IE6 (3 posts)
(2) Database and Header error using Lighttpd and FastCGI (see smatthews’s posts – disabling fastcgi on bluehost fixed anonymous comment posting).Forum: Themes and Templates
In reply to: Trouble getting alternating comment styles to workThanks, Ivovic. I was too fast on the “copy” trigger. Here is what I meant:
/* This variable is for alternating comment background */ $oddcomment = "alt";If one is following the default theme’s method, then it should be $oddcomment = ‘class=”alt” ‘;
. And, when the$oddcomment` variable is switched, here:/* Changes every other comment to a different class */ $oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';Then, the
'class="alt" 'needs to match what one originally set as the$oddcommentvariable.Based on the OP’s settings, the alternating classes would work, just only on the third, fifth, etc., comment entries.
Forum: Fixing WordPress
In reply to: Permalinks not workingedit: Didn’t refresh and see moshu’s post. Anyway…
Have you checked your server settings, per the Codex page? Mod_rewrite? Symlinks? Fileinfo?
Install this plugin:
AskApache Rewrite Rules Viewer and see if it reports anything unusual.Forum: Fixing WordPress
In reply to: just upgraded and now I get errors when I try to delete anythingCheck out this topic: Solution for 2.3 database errors / wp_post2cat does not exist (99 posts)
Sounds like an incompatible theme or plugin.
Forum: Fixing WordPress
In reply to: Tag Permalink ProblemsUniqueTracks, I saw the 404 error page result. Though, using the default permalink structure —
/tag?=copyright-infringement
returns a “Sorry, no posts matched your criteria, please try and search again.” instead, which means that the default method is at least calling on one template file (maybe just the index.php).Have you tried debugging your theme and plugins? If not, try that. E.g.,
(1) Make sure your blog is properly configured for its actual location and URL.
(2) Switch to a default theme. Does the problem still occur?
(3) Turn off all plugins. Does the problem go away? If so, activate one plugin at a time and check until the problem occurs. That plugin should be the culprit, though it could be some rare conflict between particular plugins.Forum: Fixing WordPress
In reply to: Lost My Comments RSS FeedI followed the feed links in your sidebar. The files are being generated. They are there. All is not lost! The problem is that RSS feeds use the XML format which is very particular about white spaces at the top of the document.
If you follow the feed links in Firefox, it outputs:
`XML Parsing Error: xml declaration not at start of external entity
Location: http://www.impressionsthroughmedia.com/wp-rss.php
Line Number 2, Column 1:<?xml version=”1.0″ encoding=”UTF-8″?><!– generator=”WordPress/2.5.1″ –>`Looking at the source of the feed, there is a blank line at the top of the feed file. That blank line is the culprit for why your feed aren’t working. But it is only a symptom of another problem.
Have a look through your wp-config.php, plugins and/or your theme’s function.php files.
In all cases, there should be no spaces or blank lines before the opening
<?phptag. Also in all cases there should be no spaces or blank lines after the final?>as well.The extra line is also showing up in the source of your homepage and you mentioned that you just changed themes, so I’d check your current theme’s functions.php first.
Forum: Themes and Templates
In reply to: Header moves but content stays fixedIt would help a lot if you had a link to your site so we could see the exact problem. But, if this theme is giving you this much grief, cut your losses and go with another one.
Forum: Themes and Templates
In reply to: Changing header typefaceand I would like to use it on my header title. Where would I do this?
You can’t. CSS defines the local fonts to use. If a user doesn’t have the font you specified, a default font is used: times roman or sans serif or courier, etc.
If the font is that cool, create an image for your masthead. And, if the font isn’t open source or freeware, make sure you paid for it.
Forum: Themes and Templates
In reply to: Trouble getting alternating comment styles to work$oddcomment = "alt";should be$oddcomment = "alt";In situations like this, it’s best to compare a working example, i.e., the default theme.
Forum: Themes and Templates
In reply to: Modify wp_loginout?Use the conditional tag
is_user_logged_in()(it’s found in wp-includes/pluggable.php) to check if a user is logged in or not. E.g.,if (is_user_logged_in()) { // Logout Link } else { // Log-in Link }Just promise that these image links have
altattributes for those who use screenreaders and such, okay?Forum: Fixing WordPress
In reply to: Blog Level SecurityUpgrade. Moving from 2.3 to 2.5 should be painless, unless you’re using some not-so common plugin or theme.
any rate, we want to enable site level security in order to capture the email addresses for the people looking at our site.
Does anyone have any advice on this?
Capture email addresses? Capture email addresses? That’s so very “black hat.” For example, spammers capture email addresses by scraping sites. So, don’t even think about it.
I’m guessing that you read somewhere that browsers can send email addresses when requesting web pages and such. Modern browsers don’t do this and in the HTTP/1.1 spec, such stuff is opt-in anyway.
Forum: Themes and Templates
In reply to: Creating Pages outside WP scopeDid you know that WP allows you to create pages? If not, read through Using Pages.
From what I can tell, that’s essentially what you’re wanting to do.