rstevenson
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How not to get this message: There is an autosave versionThanks for the answer doc4.
If that message only popped up when there was a reason for it, it would indeed be informative. But I’ve gone to the trouble of checking the autosaved version of a page against the most recently saved version and all it shows in my case is the exact same document but the autosave will have codes such as eacute whereas the saved version shows the letter e with the accent above it.
I’m interested in your suggestion to turn off the revisions. Could you elaborate for a noob?
Thanks,
Rob
Forum: Fixing WordPress
In reply to: How not to get this message: There is an autosave versionSorry I don’t have an answer. I too am having this problem, but only when logged in as an author, not when I am logged in as admin. (I’m still using v2.6.2 for now.)
I thought perhaps if I reply to your post, someone who knows the answer might see the question this time.
Rob
Forum: Themes and Templates
In reply to: Left sidebarAfter some fiddling, I got this to work. My changes in styles.css are…
#sidebar {
float: left;
padding: 20px 0 10px 0;
margin-left: 35px;
width: 190px;
}… and …
.narrowcolumn {
float: right;
padding: 0 45px 20px 0;
margin: 0px 0 0;
width: 450px;
}… and, in index.php the top 2 lines are now …
<?php get_header(); ?>
<?php get_sidebar(); ?>Hope this helps someone else.
Rob