Not signed in (Sign In)

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

    • CommentAuthorhelen
    • CommentTimeJan 8th 2009
     
    I am trying to find how to change all of the black font colors to white on my gallery page. I know little about programming. Can anyone help? Thanks!
    http://bilanxcenter.com/bilanxcenter_pics.php
    • CommentAuthorchewbears
    • CommentTimeJan 9th 2009
     
    use the style sheet. Its the easiest to work with in terms of changing anything font related.
    • CommentAuthorhelen
    • CommentTimeJan 12th 2009
     
    Thanks! I tried that first. When I went into the style sheets, I didn't see any code for the color black. I'm not a programmer, but I can read some code. I'm a designer, so maybe I'm missing something.
    • CommentAuthorchewbears
    • CommentTimeJan 12th 2009
     
    gallery.css just play with anything that says "font-size" and mess with the colors
    You will probably have to add the colors to them. For example MOST of your black fonts surrounding your pictures are controlled by the .info

    To add a color line add

    color: #FFFFFF;


    Above will change a font to white.

    so your line would read

    .info {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size:9px;
    color: #FFFFFF;
    }

    {
    • CommentAuthorchewbears
    • CommentTimeJan 12th 2009
     
    so find anything in your css that has a font size and add the color line to it and you can see what does what etc