I copied the line from my func.php file in the same directory. Here's the full section I copied it from:
$output .=
'<div class="summary_topic">
Random Screenshots</div>
<div class="pic_frame"><br />
';
$output .= random_thumbnails(3,"",80).'</div>';
And here is a link to what the result looks like:
http://img139.imageshack.us/img139/1027/resultkr.jpg
I can give you guys a link to the actual web page if you like; it shows the code as it works in the original context in a sidebar as well as how I'm trying to display it.
The entire CSS code for the section is as follows:
.sshot
{
padding: 0.3em;
}
.sshotframe
{
float:center;
background-color:#E1CAA8;
padding:0.1em;
color:inherit;
width:500px;
height:200px;
margin: 0.3em;
margin-left:0.5em;
border:1px solid #CAB292;
}
.sshotframe h3
{
text-align:center;
}
.sshotgroupframe
{
float:center;
margin: 0.3em;
margin-left:0.5em;
text-align:center;
}
I added width and height values to .sshotframe to try and get the tan box to sit in the center of the lighter background, but it's not working quite as I would like it to.