I’m sorry it took so long to post this. I had kinda back-burnered this project until I got some other sites finished. The biggest obstacle on the painter theme CSS mods was to actually find the CSS file. If you go to “Appearance” and edit the style.css file, all that is there is a few useless entries . . . useless in that the Painter theme does NOT use them. If you look at the link in the source code to your CSS file, it is:
/painter/css/style.css
However, the Appearance editor actually edits a file named
/painter/style.css
To make CSS changes that actually do something, you either need to change the CSS link, or mod the /painter/css/style.css file manually and upload it. With that said, to move the sidebar in the painter theme to the other side read below:
The original content CSS entry was
#content
{
float:left;
width:700px;
padding:14px 0px 10px 10px;
}
and the original sidebar CSS entry was
{
float:right;
width:250px;
padding:14px 10px 10px 10px;
}
I just changed the float on the content to right and the float on the sidebar to right.
To remove the blogroll and others, you can simply delete the appropriate DIV from the sidebar.php file in the Appearance editor. I don’t remember, but I think with 2.7 you can actually take the “links” widget off of the sidebar through the widgets page.
As far as my text not showing up in IE6, I’m still lost.