Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorsab
    • CommentTimeJul 24th 2008
     
    Can anyone tell me how to increase the font size on the captions. Mine are showing up so small compared to all the other text and in the upper right and the captions are getting lost in the looking. Any help is appreciated. Thanks!!
    •  
      CommentAuthorkimparsell
    • CommentTimeJul 24th 2008
     
    sab -

    I'm assuming you are referring to the picture captions when looking at the large image. Which theme are you using?
    • CommentAuthorGymfan15
    • CommentTimeJul 24th 2008 edited
     
    I, too, am interested in a solution to this question, as I would like to know the same thing, although I'm more interesting in how to change the formatting of the photo descriptions on the intermediate page rather than the captions. I'm using Classic theme, btw, embedded on my website, Spareoom.net.
    •  
      CommentAuthorkimparsell
    • CommentTimeJul 25th 2008
     
    For the Classic theme, here is a list of the IDs and classes in the stylesheet that control the text on various pages. In each one, you will need to change the line containing font-size in gallery.css.

    Overall Gallery:
    - To change the text size for the breadcrumbs, look for #breadcrumbs and add the line font-size: xxpx; (with xx being the size you want the text to be).
    - To change the text size for the pagination links, look for #pagination and add the line font-size: xxpx; (with xx being the size you want the text to be).
    - To change the overall text size on the page, look for #wrapper.

    Collections, Collection, and Album level:
    - To change the text size for the Collection/Album name, look for .meta-header.

    Album level:
    - To change the text size for the blue thumbnail overlay with the number of comments, look for #overlay.

    Picture level:
    - To change the text size for the caption, look for #picture_caption.
    - To change the text size for the date, look for .date.
    - To change the text size for the author/date line under a comment, look for .comments cite .
    - To change the text size for the description, look for #wrapper. If you want a different size text for just the description, add the following to the stylesheet:

    #description {
    font-size: xxpx;
    }


    Footer text:
    - To change the text size for the Plogger link, look for #link-back.

    Other themes may have the same style hooks in their respective stylesheets, so this may help with them as well.

    Hope this helps! :)
    • CommentAuthorsab
    • CommentTimeJul 25th 2008
     
    Wonderful!! That worked! I too am using the classic theme embedded in my site - that is under Themes>Default>gallery.css

    My font problem is solved! Thank you!!