Aligning flash templates

Discussion in 'HTML & Website Design' started by Devana, Nov 27, 2008.

  1. #1
    I've got a flash template and it's edited finished, the only thing I can't seem to get right is to align it to the middle/center. Anyone know where and how I can do this? I tried it both via the flash editer and via dreamweaver, and set it to "middle", but it still stands to the left for some reason.
     
    Devana, Nov 27, 2008 IP
  2. higreg7

    higreg7 Peon

    Messages:
    469
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Insert your flash in a table and align the table ;-)
     
    higreg7, Nov 28, 2008 IP
  3. Jordan656

    Jordan656 Peon

    Messages:
    399
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    CSS:
    
    #wrap {
    width: 900px; /* Change for width of flash template */
    margin-left: auto;
    margin-right: auto;
    }
    
    Code (markup):
    HTML
    <div id="wrap">flash code here...</div>
    Code (markup):
     
    Jordan656, Nov 28, 2008 IP
  4. Devana

    Devana Well-Known Member

    Messages:
    987
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    130
    #4
    Thanks, it worked :D
     
    Devana, Nov 28, 2008 IP