Now we've got the big bold headline across the top. Next, we're going to do something diabolical to force the "Amazon Price: Blah [BUY BUTTON]" over to the right, out of the way. I could do this any old way, but I'm lazy, and it just so happens that Amazon gives us this invisible one-pixel image which it uses as a security measure to make sure our link isn't being hijacked. The image's URL includes our associates code, and if it doesn't match the link, someone's pulling something funny. So anyway. A 1x1 pixel transparent image doesn't show up. But we can MAKE IT BIGGER with CSS, forcing what's under it to scoot over. I only had to do this because I chose to make my image BIGGER than the space the Amazon Spotlight reserves for an image!!! So.
<img src="weird-ass long URL with your associate name in it" border="0" alt="" style="border:none !important; margin:0px !important; float: left; width: 220px; height: 40px; ">
Float makes it sit side-by-side with whatever it bumps into. 220 pixels is the width of the image I chose plus a little extra. The height makes our spacer-image extend down into the area where the Amazon Price info is, forcing it over to the right. Amazon surely doesn't care if we stretch its graphic; it's just looking at the data in that URL to make sure we're legit.
OKAY. NOW. Let's place the product image.
Paste it into the BLURB BOX in your Amazon spotlight module, where you'd normally tell why this is a spiffy-cool product. (I.e. the gray area in my example above.)
Now we need to scoot our graphic over. I made mine a big honking 200 pixels wide, much bigger than Squidoo's Amazon Spotlight module's graphic, so big it's pushing into the area normally reserved for the text blurb. That's okay, as long as I set the image to FLOAT LEFT so the text to the right scoots over to make room.
<a href="big long associates link">*lt;img border="0" src="http://www.istad.org/lenses/amazon/sushi-cat-poster.jpg" alt="Funny Cat Poster: Sushi Chef" style="width: 200px; margin-left: -175px; margin-top: -38px; float: left;"></a>
See what I did? I set the picture to 200 pixels wide. Then I scooted it LEFT 175 pixels, and UP a bit too to get it level with the Amazon price.
Okay, we're in the home stretch. Time to make that blurb look pretty!
<p style="margin-left: 20px; background-color: lightgray; font-size: 16px; line-height: 22px; padding: 10px;">
If you haven't used the template in a while, when you go to make a new Amazon Associates text link, copy the code they get STRAIGHT into a spare window, eyeball it, and make sure that the only difference between the URL they just gave you and the one in the template is the product number. If in doubt, replace the whole URL. But do NOT replace any of the styling, or you'll have to do that again.
I could've given you a template. Except I couldn't, because it really varies by the shape product image you want, and how you want to lay it out. So instead I'm teaching you the IDEA, which you can apply. The good news is, once you've created a template you like, you can keep reusing it with minimal upkeep. The bad news is, if Squidoo ever changes the layout of the Spotlight module, you'll have a LOT of editing to do if it's pushed things around.
I think my method works in such a way that even if Squidoo shifts things around, my codes will override it and do their own thing. But I can't promise.