Formatting the text would be done in the stylesheet (lightbox.css). These are the style you would want to adjust:
Code:
#imageDataContainer{
font: 10px Verdana, Helvetica, sans-serif;
background-color: #fff;
margin: 0 auto;
line-height: 1.4em;
}
#imageData{
padding:0 10px;
}
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }
#imageData #caption{ font-weight: bold; }
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; }
#imageData #bottomNavClose{ width: 66px; float: right; padding-bottom: 0.7em; }
Keep a copy of the original values just in case you really mess up and want to start over.
Now about avoiding the flyout - if memory serves, the title of the link determines the text. If you are using an image as the trigger, set its title and alt to empty strings. If you are using just text, enclose it in a span and give it an empty title attribute, examples -
image trigger:
HTML Code:
<a href="someimage.jpg" rel="lightbox" title="Some Image - Cool!"><img src="trigger.jpg" border="0" alt="" title=""></a>
text trigger:
HTML Code:
<a href="someimage.jpg" rel="lightbox" title="Some Image - Cool!"><span title="">Click for Some Image</span></a>
I'm not sure about the text trigger but, is the best shot I can think of. The image method I've used and it works.
Bookmarks