Does anyone know where in the code I could make a change to the text size of the "Start Slideshow" link? It is tiny and this really cool feature seems to get lost as people don't know it exists. Any help would be greatly appreciated! Thanks-

Comments

dldege’s picture

This can be changed in CSS.

The link is output as

<div id="piclenslite">
<a href="javascript:PicLensLite.start();">Start Slideshow <img width="16" height="12" border="0" align="absmiddle" title="PicLens" alt="PicLens" src="/sliderdev/sites/all/modules/drupal-contrib/piclens/PicLensButton.png"/></a>
</div>

You can simply set some CSS properties on that id in your theme's CSS

#piclenslite{font-size:2em;}

superflyman’s picture

Thanks! Great info!