[Pro] Showcase Gallery Action CSS edit

After setting up a showcase gallery, I want to edit the image thumnail captions from the default 12 px to 10 or 11 px, and the large image captions to about 14 px.

How would I overide the CSS at Freeway level?

The way I am doing this right now is to edit the showcase stylesheet CSS directly on the server. But, that means I have to perform this task after every upload.

Any ideas?


actionsdev mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

There is an action available on here - http://www.actionsforge.com/actions/view/226-showcase-extras that helps you add a watermark to images or change button styles, but any other changes have to be handled the hard way at this point.


actionsdev mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Try this on the page that your showcase appears. Page>HTML Markup in the before End HEAD section.

<style type="text/css">
    #gallery ul.fwShowcase_thumbs .fwShowcase_caption {
    display: block;
    position: absolute;
    bottom: 10px;
    width: 120px;
    height: 40px;
    margin: 0;
    text-align: centre;
    font-size: 14px;
    color: red;
    overflow: hidden;
    cursor: pointer;
}
</style>

Edited to suit your needs.

David


actionsdev mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Dave, that did the trick after I identified the appropriate element to overide.

Thanks.


actionsdev mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options