PDA

View Full Version : CSS for captions on journal style gallery


JM78
Jul-08-2009, 07:57 PM
On my services page I would like to make the title of my captions e.g 'Children's Portraits' larger than the rest of the caption.
Could I have some CSS help please?

When this page loads initially an empty photo box displays briefly at the top of the page as though 2 photos will be displayed in this gallery. Can I fix this?

Thanks

Allen
Jul-08-2009, 08:11 PM
On my services page I would like to make the title of my captions e.g 'Children's Portraits' larger than the rest of the caption.
Could I have some CSS help please?

When this page loads initially an empty photo box displays briefly at the top of the page as though 2 photos will be displayed in this gallery. Can I fix this?

Thanks
Add a span around the title.

<html>
<span class="myTitle">Children's Portraits </span><br>
...
...


Add this to your CSS

.gallery_8058002 .myTitle {
font-size: 150%;
}

.gallery_8058002 .play_slideshow {display: none;}

JM78
Jul-09-2009, 05:30 AM
Add a span around the title.

<html>
<span class="myTitle">Children's Portraits </span><br>
...
...


Add this to your CSS

.gallery_8058002 .myTitle {
font-size: 150%;
}

.gallery_8058002 .play_slideshow {display: none;}





Thanks Allen that's perfect !
I will use these as as examples to help me do some further html customization by myself