Results 1 to 3 of 3

Thread: IMage thumbnail viewer: font color

  1. #1
    Join Date
    Apr 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default IMage thumbnail viewer: font color

    1) Script Title: Image Thumbnail viewer

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...thumbnail2.htm

    3) Describe problem: Does anyone have any idea of how to change the font color on the title that is displayed on the larger image? Seems like default is black and, although I have tried to apply different styles to it, it doesn't affect a change. Thanks.

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    The title (aka description) is simply inserted into the same DIV that shows your enlarged image. In the demo, it would be this DIV:

    Code:
    <div id="loadarea" style="width: 600px"></div>
    So to style the text, you would simply use CSS within that DIV, for example:

    Code:
    <div id="loadarea" style="width: 600px; color: red; font-weight: bold"></div>

  3. #3
    Join Date
    Apr 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default thanks

    ...for your quick reply.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •