DianeV
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Akismet says caught but it is still showing in sidebarIt’s hard to guess what’s happening without enough information. Did you install a plugin to display comments in the sidebar … and, if so, which plugin was it?
Forum: Fixing WordPress
In reply to: Firefox Display Problem: Page Won’t Center!Thanks; unfortunately, “didn’t work” isn’t very descriptive.
You need to set a width before the margin:auto thing will work; otherwise, the width will automatically be the entire width of the window.
Forum: Fixing WordPress
In reply to: some colours won’t change when editing themeGlad you sorted it out. 🙂
Perhaps you could mark this post [Resolved].
Forum: Fixing WordPress
In reply to: some colours won’t change when editing themeIf you mean your pixiebits blog (you didn’t say), I don’t see a mint background for the posts.
Forum: Fixing WordPress
In reply to: How to prevent automatic conversion of quotes?Apparently someone had bright idea to add some “magic” to these benign little things and now we have a pile crap that doesn’t render consistently.
I’m sorry for saying virtually nothing here, but that statement made me smile. 🙂
Forum: Themes and Templates
In reply to: New to Sandbox: how do I change font styles?I don’t know the Sandbox theme and don’t feel like downloading and studying it — but essentially you should look for a class that specifies font-family.
If they’re clever, they’ve done in in the body.
Also, if you’re fairly new to HTML and CSS, http://htmldog.com can be your friend.
Forum: Themes and Templates
In reply to: Change the title to an img.I’m not sure what you mean. By “page title”, are you referring to:
- the <title> tag?
– the title of a post?
– the header image at the top of the blog?Forum: Fixing WordPress
In reply to: Firefox Display Problem: Page Won’t Center!You’re editing the wrong thing; you *need* to edit the CSS file.
body { font-size: 62.5%; /* Resets 1em to 10px */ font-family: "Times New Roman", Times, serif; background: #F5F5F5; text-align: center; } #page { background-color: white; border: 1px solid #959596; margin: 0 auto; text-align: left; }The problem is #page; you’re telling it to have margins of 0 (at top and bottom) but “auto” to the left and right. The problem is that you haven’t told it how *wide* #page is, so it can’t align it to the left/right the way you want. If you add a width to #page [like, width:780px], then it should center properly.
At least, that’s my guess on first cup of coffee.
Forum: Themes and Templates
In reply to: Problem of mx4 in 2.1That’s terrific. You might edit your thread title with: [RESOLVED]
Forum: Fixing WordPress
In reply to: can i trick wordpress into archiving to an earlier date?If you lost your database (ouch!), just repost your posts and set the date in the Post Timestamp thing on the Write page.
Forum: Everything else WordPress
In reply to: Recent flood of SPAM via ping/trackbackWhyNot, if you want your WP blog to use the “pretty” URLs instead of site.com/index.php?=123, the commands that control that also go into the .htaccess file. However, WP is able to insert that into the .htaccess by itself.
.htaccess is lovely, if confusing at first.
Forum: Themes and Templates
In reply to: Wide enough for imagesYes, depending on which template you’re using, you’ll need to make your layout wide enough to hold the images *and* the sidebar or anything else that affects the width.
As to whether it’s safe, try copying the file before you change it.
As to dynamic width, I can’t think of one offhand. Doesn’t mean there isn’t one; perhaps I’m just tired.
Forum: Everything else WordPress
In reply to: Recent flood of SPAM via ping/trackbackIf you have his IP address (and it’s always the same one), try putting this in your .htaccess file:
Deny from 111.222.333.444That may deny him access to your website at all.
Forum: Your WordPress
In reply to: SOMEONE PLEASE HELP!!!!Okay. Unfortunately, without knowing what version of WordPress you’re using, how you’ve set it up, and a link to your blog, we can only guess at what’s going on.
Also, it’s best to make your post title reflect the problem, so that those who *can* help can recognize what the problem is. (And ALL CAPS signifies shouting.)
Forum: Installing WordPress
In reply to: Can’t Select DatabaseBecause it originally worked, I’d say that the data in your wp-config.php was correct.
At least, at that time. So now it’s time to figure out what changed. You say you were “setting some things up” … what did you set up? Is the database still there?