|
Tailslide -> RE: css to centre flash (5/14/2006 16:17:45)
|
You've got a whole load of markup within the head of your document which may well cause you problems - move it all out of the head and into the body of the document and see what happens. Easiest way to centre using CSS would be to shove everything into a containing div and give that div the rule: #container {margin:0 auto; text-align:center;} Then normalise the text align further down in the CSS. Margin 0 auto will put the div at the top of the page in the centre for good browsers and text-align:center will do the same for IE.
|
|
|
|