HighDots Forums  

centering a table

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss centering a table in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
macca242424
 
Posts: n/a

Default centering a table - 07-19-2004 , 09:11 AM






if i am using a table in dreamweaver 800 x 600 pixels how do i center it so when a 1024 reolsution views the site it would be centred

Reply With Quote
  #2  
Old   
:. Nadia .:
 
Posts: n/a

Default Re: centering a table - 07-19-2004 , 10:02 AM






macca242424 said the following:
Quote:
if i am using a table in dreamweaver 800 x 600 pixels how do i center
it so when a 1024 reolsution views the site it would be centred

Read the 'flexible' table tutorial link in my sig.
Also make sure you are not in layout mode, get into standard mode / design -
code view and learn to insert tables. Will make life much easier.


--
Nadia
-----------------
*Free Templates *Dropdown Menu Templates*
http://www.DreamweaverResources.com
*Templates - HTML and CSS Validated *
*Free Nav Bar Sets*
*Resources : Ecommerce : SEO Articles*
-----------------
:Flexible Table Tutorial:
http://www.dwfaq.com/Tutorials/Tables/flexible_tables.asp
-----------------





Reply With Quote
  #3  
Old   
Linda Rathgeber-TMM
 
Posts: n/a

Default Re: centering a table - 07-19-2004 , 10:34 AM



macca242424 wrote:

Quote:
if i am using a table in dreamweaver 800 x 600 pixels how do i center it so when a 1024 reolsution views the site it would be centred
Click on the <table> tag on the selector bar. Set 'Align' to Center in
the Property inspector.


--
Cheers,
Linda Rathgeber
----------------------------------------------------------------------
Learn Fireworks Visual Effects with "RAZZLE DAZZLE"
http://www.webdevbiz.com/pwf/
Victoriana | http://www.projectseven.com
Playing with Fire | http://www.playingwithfire.com
Team MM Fireworks Volunteer | www.macromedia.com/go/team
----------------------------------------------------------------------



Reply With Quote
  #4  
Old   
Herb
 
Posts: n/a

Default Re: centering a table - 07-31-2004 , 06:16 PM



Depends on your Doctype, this should work on most.

table.center {
margin-left: auto; margin-right: auto; /*this centers table in Mozilla and
Opera*/
text-align: center; /*this centers table in IE*/
width:500px;
border: 1px;
}

"macca242424" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
if i am using a table in dreamweaver 800 x 600 pixels how do i center it
so when a 1024 reolsution views the site it would be centred




Reply With Quote
  #5  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: centering a table - 07-31-2004 , 06:22 PM



It works horizontally, but not vertically.

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"Herb" <herbh30 (AT) swbell (DOT) net> wrote

Quote:
Depends on your Doctype, this should work on most.

table.center {
margin-left: auto; margin-right: auto; /*this centers table in Mozilla and
Opera*/
text-align: center; /*this centers table in IE*/
width:500px;
border: 1px;
}

"macca242424" <webforumsuser (AT) macromedia (DOT) com> wrote in message
news:cdgha3$dc0$1 (AT) forums (DOT) macromedia.com...
if i am using a table in dreamweaver 800 x 600 pixels how do i center it
so when a 1024 reolsution views the site it would be centred





Reply With Quote
  #6  
Old   
Evisuuuu
 
Posts: n/a

Default Re: centering a table - 08-01-2004 , 11:00 AM



easy, make a <DIV> around ur table.

<div align=center>
<!-- place table here -->
</div>


"Herb" <herbh30 (AT) swbell (DOT) net> schreef in bericht
news:ceh5nr$kle$1 (AT) forums (DOT) macromedia.com...
Quote:
Depends on your Doctype, this should work on most.

table.center {
margin-left: auto; margin-right: auto; /*this centers table in Mozilla and
Opera*/
text-align: center; /*this centers table in IE*/
width:500px;
border: 1px;
}

"macca242424" <webforumsuser (AT) macromedia (DOT) com> wrote in message
news:cdgha3$dc0$1 (AT) forums (DOT) macromedia.com...
if i am using a table in dreamweaver 800 x 600 pixels how do i center it
so when a 1024 reolsution views the site it would be centred





Reply With Quote
  #7  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: centering a table - 08-01-2004 , 11:17 AM



Try that in IE and let me know how it works, please.

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"Evisuuuu" <No_spam (AT) thnx (DOT) no> wrote

Quote:
easy, make a <DIV> around ur table.

div align=center
!-- place table here --
/div


"Herb" <herbh30 (AT) swbell (DOT) net> schreef in bericht
news:ceh5nr$kle$1 (AT) forums (DOT) macromedia.com...
Depends on your Doctype, this should work on most.

table.center {
margin-left: auto; margin-right: auto; /*this centers table in Mozilla
and
Opera*/
text-align: center; /*this centers table in IE*/
width:500px;
border: 1px;
}

"macca242424" <webforumsuser (AT) macromedia (DOT) com> wrote in message
news:cdgha3$dc0$1 (AT) forums (DOT) macromedia.com...
if i am using a table in dreamweaver 800 x 600 pixels how do i center
it
so when a 1024 reolsution views the site it would be centred







Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.