buzz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Does anyone know how to install RSS on your wordpress blog?Your RSS is working fine from my end using Firefox or IE and that addtoany link worked too. (I got your site address from your previous post on the same subject)
Forum: Installing WordPress
In reply to: 2.7.1 Update Successful and Fast – On 2 of 3 BlogsSame here – positive experience on 2 (of my 5 blogs) that were offered the upgrade. Maybe tomorrow for the other 3 🙂
Forum: Fixing WordPress
In reply to: Cannot center images in a postSomething that worked for me:
In your style sheet, look for selectors such as “post” or “content” that control the appearance of the post area. Look there for and remove “text-align: left;” if it exists. Redundant I know, since text normally aligns left on its own, but some style sheets do contain it and that property overruled aligncenter in my theme.Forum: Fixing WordPress
In reply to: What’s going on with my dashboard…Have you compared your dashboard in different browsers?
Try changing margin-top to something smaller, say 5px and see if that makes a difference.
If all else fails, I would download WP again. Unzip it to a folder other than the present copy on your computer. Completely delete the wp-admin folder on your server and replace it with the wp-admin folder from the new copy.
Forum: Themes and Templates
In reply to: Can I change the default text color for PAGE text?I’m assuming that you’re using the visual editor when composing. When you paste something in, switch over to the html editor. That will show you any formatting, which should be removed.
Forum: Themes and Templates
In reply to: Themes incomplete, Huh?I’m not familiar with cpanel, but it’s popular, so it should know the difference between binary and ascii files. I’m sure someone here knows.
What browser are you using? Depending on the bowser, are you seeing “red Xs” where an image should be showing?
In your browser, take a look at the source code of the page. (If you’re not familiar with it, look through it for a few minutes and everything should start to make a little sense.) You should be able to determine if the page is linking to a missing image in question.
Forum: Themes and Templates
In reply to: Can I change the default text color for PAGE text?<font>is a long deprecated tag. Sure you were looking at a word press file? All font colors should be located on the style.css file in your theme directory and should be in the form of:color: #xxx;
This can be found the body element, but may be a different color in others such as content, H?, etc.
Forum: Themes and Templates
In reply to: Themes incomplete, Huh?Open the theme folder on your server (with ftp) and make sure the image folder mirrors what you have in the zip file?
Forum: Fixing WordPress
In reply to: Can’t display post tagsAdded Simple Tags plugin, so resolved, but not really resolved
Forum: Themes and Templates
In reply to: Unable To Use Template EditorI’ve seen this issue on a different host, so you may want to contact your site host to see if they have a switch thrown somewhere. And I echo boober’s concern – make sure you have backups locally in case something is borked.
Forum: Fixing WordPress
In reply to: What’s going on with my dashboard…Sounds like a CSS position issue. Open wp-admin/wp-admin.css. Out of the box, that element should look like this:
#wphead #viewsite { position: absolute; margin-top: 12px; margin-left: 10px; }Or something else could effect it. Upload a fresh copy of wp-admin.css from the zip file.
Forum: Fixing WordPress
In reply to: inserted links default to wp-admin folderIf you use an absolute address, it shouldn’t reform it. If you have just a small number of addresses that you repeatedly link to, copy them to a text file for a quick copy and paste. Or try this plugin:
Forum: Fixing WordPress
In reply to: inserted links default to wp-admin folderYeah, it looks like absolute URLs are the way to go. Or see this topic:
http://wordpress.org/support/topic/164301?replies=6
(some hacks included)Forum: Fixing WordPress
In reply to: Login issueDo you have wp-login.php in your root directory?
Forum: Fixing WordPress
In reply to: how to customize tagsIf you’ve added the “tag cloud” php tag to your template, just adjust the “largest” size to your liking. That would be 22pt on this tag:
<?php wp_tag_cloud('smallest=8&largest=22'); ?>