Results 1 to 3 of 3

Thread: Format The Title

  1. #1
    Join Date
    Nov 2004
    Posts
    39
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Format The Title

    1) Script Title: Photo Album script v2.0

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

    3) Describe problem:

    How do I format the title/text (opt_image_title) in the gallery. I tried the code below but the text didn't change>

    /*CSS for TABLE containing a photo album*/
    .photogallery{
    color: #000000;
    text-align:center;
    }

    Thank you.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Well, that worked here (testing using FF Developer extension). However, for other browsers (or for pages with other styles already declared for td elements) you may need to be more specific:

    Code:
    .photogallery td {
    color: #000;
    text-align:center;
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Nov 2004
    Posts
    39
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    It seems to work with both codes below, one for some reason doesn't work:

    .photogallery {
    color: #000;
    text-align:center;
    }

    .photogallery td {
    color: #000;
    text-align:center;
    }

    Thank you.

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
  •