Not signed in (Sign In)

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

    • CommentAuthorzikoriats
    • CommentTimeApr 24th 2009
     
    I´ve search for how to change the text font in plogger but I didn´t find anything. I´ve also tried change the font in gallery.css and more but the only text font that is changing is the font at the plogger log-in. How do I change the text font on albums for exampel?

    Thanks!
    • CommentAuthorsp33d
    • CommentTimeApr 24th 2009
     
    Assuming you are using the default theme you need to change the font-family tag in the body element in gallery.css. There is nothing else that I'm aware of that controls the font. There are a couple controlling form inputs and an overlay but those don't have any affect on the actual content. Make sure you are editing the right gallery.css (in the right theme folder) and make sure you are using correct syntax.
    • CommentAuthorzikoriats
    • CommentTimeApr 24th 2009
     
    thx! work´s fine at the fonts below the album-picture, but not at album-font at the top. For example when you click at one album it stands like this: Collection- Album - Album - Your Picture.. (this font at this row!)
    How do I change this? Like I said before, seems like I tried everything but apparently I havn´t.
    Thanks again!
    • CommentAuthorsp33d
    • CommentTimeApr 24th 2009
     
    Do you have a link to the page so we can look at it?
    • CommentAuthorzikoriats
    • CommentTimeApr 24th 2009
     
    Yea I have, but it´s in progress so just care about the font for the plogger at the moment..
    http://emelieberglund.com/galleri.php

    I want the font text, I talk about earlier, to be the same as "illustration" and "måleri" and I don´t want the number 1 standing there and when you click to the picture I want to hide the "details" and "date".
    Can I fix it?
    • CommentAuthorsp33d
    • CommentTimeApr 24th 2009
     
    You don't have any definitions for body styling in your css file so it doesn't have something to default to if there is nothing defined for the element.

    Add the following to the gallery.css file in the appropriate theme folder:

    body {
    font-family: "Andale Mono", "Boring Boring", "Arial Narrow";
    }


    The 1 looks like a stray in your code. Open collections.php and find:
    <div id="thumbnail_container">

    The one should be directly before it somewhere.

    To hide the "details" and "date" info open picture.php and delete these lines:
    <td class="align-right"><h2 class="date"><?php echo plogger_get_picture_date()?></h2></td>

    <p id="exif-toggle"><?php echo $detail_link; ?></p>
    <div id="exif-data-container">
    <?php echo generate_exif_table(plogger_get_picture_id()); ?>
    </div><!-- /exif-data-container -->
    • CommentAuthorzikoriats
    • CommentTimeApr 25th 2009
     
    Thanks! The "detail" and the "date" is clear. it worked!
    But not the other stuff, still don´t work to change the font at the text-row: Konst » Illustration » Illustration » deer.jpg (http://emelieberglund.com/galleri.php?level=picture&id=16)
    What am I doing wrong?
    please write in detail so I understand precisely, thx!
    • CommentAuthorzikoriats
    • CommentTimeApr 25th 2009
     
    yeah I forgot ! The number "1" is still there to...
    I couldn´t find it in the code? Is it in a code or just standing alone as number "1" ?