How do I do this???(This is what you wrote)
so I’d try that out… toss out the sidebar and put the sidebar content you want for that particular page as part of the page.
Well, you’ve tossed out the sidebar… looking good so far. I notice that the page content isn’t stretching all across the page as desired. Make this change…
In single.php (I think… that’s my best guess where this code lies):
Look for <div class=”grid_16 alpha”> and replace “grid_16” with “grid_23”. That’ll stretch the content across most of the way.
Now, as for adding the images back in… I’d try adding the images that were in the sidebar to the post’s content itself as right-aligned images. If that doesn’t look quite right, remove the images from the post and place them in a <div> block as such…
<div style="float:right; width: 225px; margin-left: 10px;><img src="..." alt="Alt text" /><br /><img src="..." alt="Alt text" /></div>
The dots should be replaced with the URL path to the images.
Lemme know if this works ok.