Not signed in (Sign In)

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

    • CommentAuthorjcb3030
    • CommentTimeMar 17th 2006
     
    I've been trying for hours to change the font style and size of the "Collections" header on my plogger index page with no luck.

    Does anyone know what element in the CSS controls that? Thanks.

    http://www.belinski.net/plogger/index.php
    • CommentAuthorjack
    • CommentTimeMar 17th 2006
     
    <div id="breadcrumbs">
    <table width="100%">
    <tbody><tr>
    <td>
    <div id="breadcrumb_links"><b>Collections</b></div>
    </td>
    <td style="text-align: right;">
    </td>

    I find it easiest to check the sourcecode within the browser for the class or id.
    • CommentAuthorjcb3030
    • CommentTimeMar 17th 2006
     
    Yes, I saw that -- but where does the <b> tag come from? That's not in the gallery.css and it's not in the index.php, either.

    I tried adding "font-style:normal" to the breadcrumbs elements, but that didn't change it from bold.

    I'm stumped.

    Thanks.
    •  
      CommentAuthormike
    • CommentTimeMar 17th 2006
     
    The bold tag is in gallery.php, but if you want to change the boldness you can simply write a decending selector like so:


    #breadcrumb_links b {
    font-weight: normal;
    }
    • CommentAuthorjcb3030
    • CommentTimeMar 18th 2006
     
    Thank you both for the help. That did it.