Need to make "Start Slideshow" link text much larger
superflyman - November 11, 2008 - 06:20
| Project: | Cooliris (PicLens formerly) |
| Version: | 6.x-1.4 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
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-

#1
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;}#2
Thanks! Great info!