msadventures
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: An Intruder in My BlogMake sure you’ve got the latest version of WP, 2.0.7 was just released a few hours ago, upgrade to that.
Change your passwords and contact your host.
As I mentioned earlier in the thread, it happened to me when I was customizing a theme and had some errors, and it did it again this evening again while I was customizing, so try double checking your code, you never know:
Forum: Your WordPress
In reply to: StayGold studio blogValidate your code…you’ve got some errors to work out:
Forum: Requests and Feedback
In reply to: [Request] Guest users can choose which theme they want to useUsing the search box at the top of the page, I found this:
http://wordpress.org/support/topic/88016?replies=3
That should help you out quite a bit. 🙂
Forum: Fixing WordPress
In reply to: annoying difference in layout for IE and firefoxYou’ve got a couple of errors that appear to be the problem:
Cleaning those up should fix that issue. 🙂
Forum: Themes and Templates
In reply to: Theme EditingIf you want to edit the blog theme, open the files on your computer using Notepad or Dreamweaver, edit them there, then upload the edited pages into the appropriate theme folder.
Forum: Fixing WordPress
In reply to: “Are you sure to…”I don’t know how to help you with that message you’re getting.
As far as the “\” you’re getting, check to see whether your site is hosted on a windows server or a linux server. Sites powered by WordPress perform better when hosted on a Linux server. I used to get that same problem, too, but I switched over to a Linux/Unix server and haven’t had that problem since then.
Forum: Themes and Templates
In reply to: body of posts pushed downI’ve just viewed your site in IE7 with a 1024×768 screen resolution, it appears to be rendering fine, the blog posts start up at the top where they should.
Usually if the sidebar or the blog posts get pushed down, it’s because some content in either of those is too larger than the section it’s been placed in.
Or you may have a problem like I do with my blog that I have been too lazy to fix yet – Perhaps the site renders correctly at the larger screen resolution, but if you look at it with a smaller screen res, like 800×600, the content gets pushed down. The fix for that would be a fluid width layout.
Forum: Plugins
In reply to: Delete a post and its associated commentsDeleting the post first should automatically delete the comments that go with it, as far as I know. Either delete the post in the “Edit post” feature, or go to Manage > Posts, and delete the post from there. Either way, the comments should go with it.
Forum: Themes and Templates
In reply to: Images NOT centering in sidebarsThose validation errors could be what’s messing up your blog. The link that doodlebee posted shows each line number of faulty code, and gives you the line number so the error is easier to find. The part in red is what it’s saying that you need to fix. The part in red is what you need to add into the code to fix the error.
Start with the first error listed and work your way down. Some people have found that by fixing the first one or two errors, that the rest are cleared up.
Personally, I’m not seeing anything veering off to the right, everything appears to be aligned to the left at the moment. The footer looks messier, to me.
Forum: Fixing WordPress
In reply to: making (kubrickheader.jpg) click able to main site’s pageYou can mark it resolved.
Forum: Fixing WordPress
In reply to: Broken LayoutHeh! I wouldn’t worry about it, we’ve all had our *facepalm* moments. Glad you’ve figured it out. 🙂
Forum: Themes and Templates
In reply to: Can anyone tell me what theme this is from?Forum: Fixing WordPress
In reply to: Insert a picture into a postYou can make a directory for your photos and name it whatever you want to.
When you’re writing a post, look at the toolbar just above the box for the post you’re writing and click on the little picture of the tree. Insert the web address of the photo you’ve uploaded and it will put the picture in for you.
Forum: Fixing WordPress
In reply to: making (kubrickheader.jpg) click able to main site’s pageHeader.php page of the theme in this section of the code:
<body>
<div id="page">
<div id="header">
<div id="headerimg"***>
<h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
</div>Add the code up in the other reply to where I’ve added the ***.