Does anyone know what the setting is to center a layer?

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
For example:


quote:
--------------------------------------------------------------------------------
<div id="Layer7" style="position:absolute; width:780px; height:16px; z-index:1; left: 0px; top: 632px; background-color: #FF9900; layer-background-color: #FF9900; border: 1px none #000000;">
--------------------------------------------------------------------------------



Where/what would i put in the Position or anything to make this layer center on the page?
 
imroue said:
For example:


quote:
--------------------------------------------------------------------------------
<div id="Layer7" style="position:absolute; width:780px; height:16px; z-index:1; left: 0px; top: 632px; background-color: #FF9900; layer-background-color: #FF9900; border: 1px none #000000;">
--------------------------------------------------------------------------------



Where/what would i put in the Position or anything to make this layer center on the page?


Hello

did you try this ?

--------------------------------------------------------------------------------
<div id="Layer7" style="position:center; width:780px; height:16px; z-index:1; left: 0px; top: 632px; background-color: #FF9900; layer-background-color: #FF9900; border: 1px none #000000;">
--------------------------------------------------------------------------------

Bye
 
yes, use <div align="center"></div> since this is probably the easiest way of doing it.
 
Back
Top