pcmt: I don’t have single.php :-/ And I did a search for that div, and it wasn’t found.
Okay, so I found
if ( is_single() || is_page() ) {
$more = 1;
$single = 1;
}
So I changed it to this:
if ( is_single() || is_page() ) {
$more = 1;
$single = 1;
get_sidebar();
}
But that put the sidebar on top of the whole page, and not over to the right where it’s supposed to be…
it’s def. not in index.php, this is all that’s in index.php
<?php
/* Short and sweet */
define('WP_USE_THEMES', true);
require('./wp-blog-header.php');
?>
The theme is custom, I designed it, and paid someone else to convert it for use in wordpress
I don’t see a single.php :-/