Not signed in (Sign In)

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

    • CommentAuthorlynns
    • CommentTimeOct 12th 2006
     
    Hi,
    Can't find the settings in gallery.css. Did a text search of the whole Plogger folder and couldn't find these colors by hex number. Can someone tell me where to change them? I'm doing a gallery with black BG, so the breadcrumbs aren't readable as is.

    BTW, thanks for making this tool available -- and easy to use!

    Cheers,
    Lynn
    •  
      CommentAuthormike
    • CommentTimeOct 13th 2006
     
    The link colors are unstyled, they just inherit the link colors of whatever website you embed them in.

    If you just added some basic link styles to the stylesheet they should change

    eg.


    a:link {
    color: green;
    }


    a:visited {
    color: blue;
    }


    a:hover {
    color: red;
    }



    If you just want to change the breadcrumb link colors, you just need to use more specificity, eg:



    #breadcrumb_links a:link {
    color: purple;
    }

    etc..

    • CommentAuthorlynns
    • CommentTimeOct 22nd 2006
     
    Ah! Much better. Thanks for posting this very complete answer to my question.

    Plogger has worked well for my friend's art work. We're very happy with the way it integrates into her site.

    Regards,
    Lynn S.
    • CommentAuthorCodriver
    • CommentTimeDec 23rd 2006
     
    Now I am borrowing this thread. I do exactly this but I do not get the new colors to my links :-(

    Where do I go wrong?

    ########### The Breadcrumb_links in my css #################

    #breadcrumb_links {
    margin: 2px;
    a:link { text-decoration: none; color: #ffff64}
    a:visited { text-decoration: none; color: #ffff64}
    a:active { text-decoration: none; color: #ffff64}
    a:hover { text-decoration: underline; color: #ffff90}
    }

    ############## End of example #############

    Please help me...
    •  
      CommentAuthorBen
    • CommentTimeDec 23rd 2006 edited
     
    looks like you need a

    ;

    after your colors. So lines should read...

    a:link { text-decoration: none; color: #ffff64; }

    plus in css you don't create css with link css inside a class or id. So you should probably have your css say...


    #breadcrumb_links { margin: 2px; }
    #breadcrumb_links a:link { text-decoration: none; color: #ffff64; }
    #breadcrumb_links a:visited { text-decoration: none; color: #ffff64; }
    #breadcrumb_links a:active { text-decoration: none; color: #ffff64; }
    #breadcrumb_links a:hover { text-decoration: underline; color: #ffff90; }


    just like mike shows in his post in this thread.