Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how do I insure centering always occurs on browser 1

Status
Not open for further replies.

7579

Programmer
Dec 5, 2004
8
0
0
US
I'm working with flash5 and dreamweaver4. How do I always insure centering of movie takes place on anyones browser......I already have centering on the horizontal but is there a way to create settings that will insure vertical centering to all display settings?
 
putting it a table always worked for me...then center in cell

<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor='#eeeeee'>
<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'>
<tr>
<td>
<div align='center'put all the object code flash supplies here</div>
</td>
</tr>
<tr>
<td>
</table>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top