Posted by superflyman on November 11, 2008 at 6:20am
Jump to:
| Project: | Cooliris (PicLens formerly) |
| Version: | 6.x-1.4 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
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
#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!