Birdpics,
Also, if you only want the horizontal bars to dissapear, you could turn them into the same color as the page background:
Assuming you are HTML/CSS savy (comfortable editing the theme CSS file outside of Shozam) you can:
The CSS file is typically in:
C:\Documents and Settings\[USER NAME]\My Documents\My Shozam Themes\[THEME NAME]\theme.css
You will need to edit the style to do what you want, like hide things you do not want to display or have them colored the same as the background. From looking at the HTML of the Info Page, you will see the following code that is controlling the display of the paragraph headings on that page (these headings display the image short caption text):
<div class="infoCaption">
<h2>Image short caption is displayed here</h2>
</div>
...meaning that your interest should be focused mainly on the "infoCaption" style.
If you go to the CSS file, you will see that style defined something like this:
.infoCaption
{
border-top-color: #cc0000;
border-top-style: solid;
border-top-width: 2px;color: #cccc00;
float: left;
font-family: Arial, Helvetica, sans-serif;
padding-left: 5px;
padding-right: 5px;
text-align: left;
width: 524px;
}
You can change this style as you please. As highlighted in red above, note that you have control over the border that apepars at the top of the style (this is the line that divides the paragraphs) as well as over the color of the caption (the paragraph title on the info Page). You can remove all the border properties to have the border go away entirely.
Or you can have it all be invisible by applying a style like this:
.infoCaption
{
float: left;
font-family: Arial, Helvetica, sans-serif;
padding-left: 5px;
padding-right: 5px;
text-align: left;
width: 524px;
display: none;
}
So even though you cannot tell Shozam not to generate the paragraph heading text (the short caption for the images on the Info Page) you can certainly control the display of those through the CSS theme file.