Viewing Changing a slideshow font

Changing a slideshow font



User: Steve F. 5 years ago
Does anybody know how to change the font that appears as a caption during a slideshow? I’ve got the titles below each picture as I want them when you are just looking at the page. However when the slideshow is running it shows a completely different font to the one on the page. I’d like them to match. The caption is also above the photos, yet on the page it is below. Is it possible to make these changes?
Thanks.

Screen Shot 2018-12-12 at 16.07.18.png

Screen Shot 2018-12-12 at 16.07.41.png
User: EverWeb Support 5 years ago
Hi Steve!

You can change the caption fonts by selecting the image gallery and opening the Fonts window (Press Command-T on your keyboard or click the Fonts button in the Toolbar). Then adjust the font to whatever you want. You can't currently change the font in the slideshow.

If you have any further questions, could you please submit a support ticket? To do so, log in to the Client area and click the blue button "Open New Ticket" on the Welcome page. I'll take it from there and will do my best to help you!

Alex

Last edit 5 years ago

-------------------------------
EverWeb Customer Support
Submit Tickets or Learn More
User: Roddy 5 years ago
The gallery use the PrettyPhoto scripts which are rather antiquated. The stylesheet has three selectors which don't have the font property so they inherit the browser default.
The one that applies to the caption appears to be "div.ppt". Here's some styles with comments on what they do...

<style>
div.ppt{
position:absolute;top:100%; /* Move caption below image */
font-family:Verdana, sans-serif; /*font family and generic group*/
color:#FFFFFF; /* font color */
text-align:left; /* caption align */
margin:5px 10px /* The first value spaces the caption vertically away from the image. The second value insets it when aligned left or right */
}
<style>

After setting the required values, remove the comments and returns and paste it into the Head Code box in the Page inspector. It should look like this ...

<style>div.ppt{position:absolute;top:100%;font-family:Verdana, sans-serif;color:#FFFFFF;text-align:left;margin:5px 10px}</style>

The widget could have styles for this or - more simly - for the caption to inherit the font family set for the thumbnail captions.

-------------------------------
Roddy

Website: http://everwebwidgets.com
Contact: http://everwebwidgets.com/ewWidgets-home/contact.html
NOTE: I am an EverWeb user and NOT affiliated with EverWeb! Any opinions expressed in this forum are my own.
User: Paul-RAGESW 5 years ago
You can change the Font of the actual image captions by using the Font window.

The font when an image is clicked cannot currently be changed but I can see if we can add this feature.

-------------------------------
Paul
EverWeb Developer


Post Reply
You must login or signup to post.