I have a flash file that I want aligned right at the top of the page, how do I remove the page border?
Printable View
I have a flash file that I want aligned right at the top of the page, how do I remove the page border?
Replace the body tag with
Or if you have a css style sheet, add this to it-HTML Code:<body style="border-top: 0px;">
Code:body {
border-top: 0px;
}