Not signed in (Sign In)

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

    • CommentAuthormr hubby
    • CommentTimeFeb 18th 2009
     
    Hi all

    I have at last got my gallery into mybespoke page, I could do with some guidance on the following

    1 How and where do I change the font color of the bax headers in the coment section

    2 how do I get the captcha image to show up again

    3 lastly where do I go to return the coments boxes to left alignmemt

    here the page http://www.worthingpanthers.co.uk/gallery/ploggerb3/?level=picture&id=2

    thanks in advance
    •  
      CommentAuthorkimparsell
    • CommentTimeFeb 19th 2009
     
    I'll answer questions 1 and 3:

    Question 1: The background color of the comments is controlled in the gallery.css file in the Lucid theme:

    .comment,.comment_alt
    {
    border-top:1px solid #CDCDCD;
    background-color:#e2e2e2;
    list-style:none inside;
    margin:0;
    padding:15px;
    }

    .comment_alt
    {
    background-color:#fff;
    }

    If you want to change the gray color of the alternating comments, you would need to change background-color:#e2e2e2; to the color of your choice. If you want the border to be a different color, you would need to change border-top:1px solid #CDCDCD;.

    Question 3: The comments are output as an unordered list, and they inherit the normal left margin of the tag. You will need to adjust the margin for .comment,.comment_alt to pull them to the left (adding margin-left: -35px; brings them back to the left side in Firefox3). I would recommend that you check how they look in several different browsers after making the change, as it may look fine in Firefox, but be messed up in IE.

    Hope this helps!
    • CommentAuthormr hubby
    • CommentTimeFeb 19th 2009
     
    many thanks

    it does
    •  
      CommentAuthorsidtheduck
    • CommentTimeFeb 19th 2009
     
    What do you mean by "again" in question #2 above? Can you clarify that question a little more?
    • CommentAuthormr hubby
    • CommentTimeFeb 20th 2009
     
    Thks guys I have sorted these queries