Results 1 to 4 of 4

Thread: Help with Script

  1. #1
    Join Date
    Aug 2005
    Posts
    27
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Help with Script

    ok ive copied and pasted Fade-in slideshow into one of my cells on my webpage and link picture to fade through and it works great but, i cant seem to get the pictures to be presented in the middle of my cell only all the way to the left i am very freshman web-master can someone help me?

    this is the html code line but pictures still fade all the way to the left of the cell.

    <p align="center">
    &nbsp;</td><script language="JavaScript1.2" type="text/javascript">

    align is set to center but still presents all the way to the left

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Try <p width="90%" align="center">
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    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

    Quote Originally Posted by delantian
    Code:
    <p align="center">
        &nbsp;</td><script language="JavaScript1.2" type="text/javascript">
    align is set to center but still presents all the way to the left
    The script is not in the table cell (between the <td></td> tags). Therefore, it is not even in the table. And 'language=' is no longer of any use. Try:
    Code:
    <td align="center"><script type="text/javascript">
    script content goes here
    </script>
    </td>
    - John
    ________________________

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

  4. #4
    Join Date
    Aug 2005
    Posts
    27
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thank you much it worked..!

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
  •