Results 1 to 3 of 3
  1. #1
    Join Date
    Dec 2007
    Posts
    2,807
    Tokens
    0

    Latest Awards:

    Default Removing borders from a HTML page

    I have a flash file that I want aligned right at the top of the page, how do I remove the page border?

  2. #2
    Join Date
    Dec 2006
    Posts
    3,970
    Tokens
    0

    Latest Awards:

    Default

    Replace the body tag with

    HTML Code:
    <body style="border-top: 0px;">
    Or if you have a css style sheet, add this to it-

    Code:
    body {
      border-top: 0px;
    }
    Lets set the stage on fire, and hollywood will be jealous.

  3. #3
    Join Date
    Jun 2008
    Location
    Manchester
    Posts
    766
    Tokens
    0

    Default

    Quote Originally Posted by SwitchandPlay View Post
    I have a flash file that I want aligned right at the top of the page, how do I remove the page border?
    When you say right at the top of the page do you mean at the very top:
    Code:
    body
    {
    margin: 0px;
    }
    or on the right hand side:
    Code:
    #idofdivcontainingflashfile
    {
    margin-left: auto;
    }

Posting Permissions

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