Results 1 to 7 of 7

Thread: untile a background in a table cell?

  1. #1
    Join Date
    Jul 2009
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default untile a background in a table cell?

    I have a background image in a cell in a table. I don't want it tiled. How do I keep it from doing this?

  2. #2
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    no-repeat? What's your code?

  3. #3
    Join Date
    Jul 2009
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Here's is the code:
    <td background="../../flowers1.jpg" colspan="4">

  4. #4
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    Add this to your CSS code:
    Code:
    td {
    background-repeat: no-repeat;
    }
    Good luck!

  5. #5
    Join Date
    Jul 2009
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    ok, this is what I have now:
    <td background="../../flowers1.jpg" background-repeat: no-repeat>

    and this is what it's showing on the site:
    http://www.christianchurchofburlingt...inistries.html

    I don't want the white strip in the flowers. Do I need a bigger picture maybe?

  6. #6
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    Use this instead:
    HTML Code:
    <td background="../../flowers1.jpg" style="background-repeat: no-repeat;">
    I'd also like to suggest that you search for some tutorials about CSS in order to stop using inline styling and deprecated markup.

    Good luck!

  7. #7
    Join Date
    Jul 2009
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks. I think I'll take your advice.

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
  •