473,804 Members | 3,271 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Table cells change size

I'm new to Dreamweaver (using MX 2004). I have a 2 row 3 column table.
I have set each column to 200 pixels. The second row I have merged
into one cell. When I enter text (or anything else) into the merged
cell the 3 columns above change pixel width. The pixel width still
says 200. But the pixel width shown in green above the columns it says
200(172)for example. It seems that the bracketed number is the size
the cell displays at rather than the specified 200, but I can't seem
to change this no matter how hard I try. My browser is IE6 so that
shouldn't be the problem.

I don't understand why the 3 top cells display perfectly, even with
the merged cell below empty, but then when text is entered they
change!

Can anyone help me??
Jul 23 '05 #1
11 9489
In article <7c************ *************@p osting.google.c om>,
sa**********@xt ra.co.nz enlightened us with...
I'm new to Dreamweaver (using MX 2004). I have a 2 row 3 column table.
I have set each column to 200 pixels. The second row I have merged
into one cell. When I enter text (or anything else) into the merged
cell the 3 columns above change pixel width.


They're supposed to. That's table behaviour.

If you don't want expansion when text goes over the borders, use a div with
proper CSS for overflow.

--
--
~kaeli~
Suicide is the most sincere form of self-criticism.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #2
Thanks for that, but the text in the top 3 cells isn't overflowing. It
is the bottom merged cell that makes the top 3 cells change size. The
bottom cell does have wrapping text but it doesn't change the width of
the TABLE, just each of the top 3 CELLS.

I would have thought that the top cells' with is independant of what
is in the bottom cell providing the TABLE width remains the same.

So how would I get the top 3 cells to be exactly equal - the way it is
is making my website look dumb!

Appreciate any suggestion. Thanks.
Jul 23 '05 #3
In article <7c************ **************@ posting.google. com>,
sa**********@xt ra.co.nz enlightened us with...
Thanks for that, but the text in the top 3 cells isn't overflowing. It
is the bottom merged cell that makes the top 3 cells change size. The
bottom cell does have wrapping text but it doesn't change the width of
the TABLE, just each of the top 3 CELLS.


Actually, I've found that to not be the case, as you have. The way the cells
expand seems to be very much dependent on the user agent implementation and
the doctype declaration (no doctype or a lack of a url in doctype throws
browsers into quirks mode). That is, it may look fine in MSIE with quirks
mode, but look awful in Firefox standard (and so on).

To solve this type of problem, when I don't want cells to change size when
cells beneath them expand, I don't put them in the same table. I put them
each in their own table inside another table.

---------------- <-- main table container specifies width
| content here | <--- in its own table with 100% width
----------------
| content here | <--- in its own table with 100% width
----------------

Tables really were never meant for layout. I still find them easier to work
with than CSS though for some things. I am slowly learning how to get away
from tables for layout, but I DO run into issues from time to time (mostly
with fluid, relatively positioned columns and text resizing pushing layers
out of place and with the whole expanding content thing).

You may want to consider checking out table-less layout with CSS. I don't
know if it would work for what you're doing. But it's worth learning. One of
my sites is done with pure CSS. The other I couldn't figure out how to get it
to work right without tables (when the user resized the text too big, the 3rd
column would wrap to the bottom, but using absolute positioning isn't usually
my style...). Try experimenting with it though. I plan on eventually being
able to drop the tables for layout for all my stuff.

I have found the info at this site to be very helpful to me.
This page in particular solved a PITA problem I was having.
http://www.quirksmode.org/index.html...centering.html

HTH
--
--
~kaeli~
Kill one man and you are a murderer. Kill millions and you
are a conqueror. Kill everyone and you are God.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #4
me
"SarahMarsd en" <sa**********@x tra.co.nz> wrote in message
news:7c******** *************** **@posting.goog le.com...
I'm new to Dreamweaver (using MX 2004). I have a 2 row 3 column table.
I have set each column to 200 pixels. The second row I have merged
into one cell. When I enter text (or anything else) into the merged
cell the 3 columns above change pixel width. The pixel width still
says 200. But the pixel width shown in green above the columns it says
200(172)for example. It seems that the bracketed number is the size
the cell displays at rather than the specified 200, but I can't seem
to change this no matter how hard I try. My browser is IE6 so that
shouldn't be the problem.

I don't understand why the 3 top cells display perfectly, even with
the merged cell below empty, but then when text is entered they
change!

Can anyone help me??


In the following example each column is set to 200 pixels wide and the table
width is set to 600 pixels. This should fix your problem
Good Luck,
me

<table width="600" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td width="200">tex t</td>
<td width="200">tex t</td>
<td width="200">tex t</td>
</tr>
<tr>
<td colspan="3">tex t</td>
</tr>
</table>
Jul 23 '05 #5
Hi again! Thanks for that but the bottom cell isn't 'overflowing'. All
the content in all the cells fits well within the height and width. I
did swap the bottom table cell for a whole new table but it didn't
fix.

I did read another thread which said the pixel width and heights you
specify are only a 'suggestion' to the browser and that the browser is
free to do what it likes. If I move to layers instead of tables do I
get the exact control I am after?
Jul 23 '05 #6
In article <7c************ **************@ posting.google. com>,
sa**********@xt ra.co.nz enlightened us with...
Hi again! Thanks for that but the bottom cell isn't 'overflowing'. All
the content in all the cells fits well within the height and width. I
did swap the bottom table cell for a whole new table but it didn't
fix.

Hrm.
Do you have an example URL?
You ARE using a doctype, right?
I did read another thread which said the pixel width and heights you
specify are only a 'suggestion' to the browser and that the browser is
free to do what it likes.
Very true. More with some browsers than others.
If I move to layers instead of tables do I
get the exact control I am after?


Yes.
But you run into other issues if you aren't careful. For example, MSIE box
model problems, overflow issues (divs, depending on the CSS, don't expand
like tables and content can overflow and look REALLY bad), cross-browser
issues, and so on.

If you have an example of what you're trying to do (URL), I might be able to
help more.

Unfortunately, the very nature of the web makes it difficult to accomodate
all browsers AND have it look exactly the same in all of them. In fact, it's
darn near impossible. There are a ton of user agents out there, though the
Big Two are MSIE and Firefox/Mozilla. But there is also Safari (Mac),
Konqueror (*nix), Opera, and many others. Unless you use Flash (which has its
own issues), you're not going to get the site to look exactly the same in all
of them. Some don't support Flash anyway.

Don't forget, many users have not-so-great vision, so they may want to
increase the text size or even have their own style sheet that they browse
with. Users might be browing with images off or even have a text browser
(Lynx). Unless you're doing an intranet app and know the browsers you're
supporting, you have to assume that at least 5% of your visitors are not
using MSIE (probably more these days).

Anything you do is purely suggestion to a user agent (browser), really.
Anyone can override your CSS (accessibility options in browsers). That's why
you need to design so that your site isn't totally FUBAR if the stylesheet is
not used. It may look like hell (or just be boring and black and white), but
it HAS to work without CSS.

--
--
~kaeli~
What if the Hokey Pokey IS what's it's all about?
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #7
In article <7c************ **************@ posting.google. com>,
sa**********@xt ra.co.nz enlightened us with...
Hi again! Thanks for that but the bottom cell isn't 'overflowing'. All
the content in all the cells fits well within the height and width. I
did swap the bottom table cell for a whole new table but it didn't
fix.


By the way, you DO know that previewing how it looks in dreamweaver isn't
necessarily how it will really look in the browser, right?

I re-read your OP and now I'm not sure if you meant the DW preview pane
looked funny or MSIE did.

Open MSIE and do File->Open to see the pages or do Preview In Browser from DW
(don't use a temp file -- uncheck that in preferences). Don't count on the
little design window to be perfectly accurate. In fact, it seriously screws
up with tables and floated divs. DW MX 6.0 crashes if you float divs, even.
They fixed that in more recent versions (MX 7.1, I think).

--
--
~kaeli~
Dancing cheek-to-cheek is really a form of floor play.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #8
me
"kaeli" <ti******@NOSPA M.comcast.net> wrote in message
news:MP******** *************** *@nntp.lucent.c om...
In article <7c************ **************@ posting.google. com>,
sa**********@xt ra.co.nz enlightened us with...
Hi again! Thanks for that but the bottom cell isn't 'overflowing'. All
the content in all the cells fits well within the height and width. I
did swap the bottom table cell for a whole new table but it didn't
fix.

By the way, you DO know that previewing how it looks in dreamweaver isn't
necessarily how it will really look in the browser, right?

I re-read your OP and now I'm not sure if you meant the DW preview pane
looked funny or MSIE did.

Open MSIE and do File->Open to see the pages or do Preview In Browser from

DW (don't use a temp file -- uncheck that in preferences). Don't count on the
little design window to be perfectly accurate. In fact, it seriously screws up with tables and floated divs. DW MX 6.0 crashes if you float divs, even. They fixed that in more recent versions (MX 7.1, I think).
~kaeli~


I have no problems with Preview In Browser from DW provided the browser is
IE. DW3 doesn't mind floating divs eithier. In fact I haven't ever had it
crash on me.
Signed,
me
Jul 23 '05 #9
me
"SarahMarsd en" <sa**********@x tra.co.nz> wrote in message
news:7c******** *************** ***@posting.goo gle.com...
Hi again! Thanks for that but the bottom cell isn't 'overflowing'. All
the content in all the cells fits well within the height and width. I
did swap the bottom table cell for a whole new table but it didn't
fix.

I did read another thread which said the pixel width and heights you
specify are only a 'suggestion' to the browser and that the browser is
free to do what it likes. If I move to layers instead of tables do I
get the exact control I am after?


I gave you the answer in a prior post in this thread. If you want to control
column width you must also specify a table width that equals the total width
of all the columns.

Here's how:
Select the table in DW. Place your cursor in any table cell. Now click the
table tag in the status bar at the bottom left of the DW window. Now enter
600px (click the dropdown next to width and change percent to px) for the
table width in the properties box to set the table to an exact width of 600
pixels. You can control the size of tables and columns in IE provided the
user hasn't overridden these settings in IE's accessibility settings. All
bets are off as far as other browsers are concerned.
Good Luck,
me
Jul 23 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

47
9164
by: Neal | last post by:
Patrick Griffiths weighs in on the CSS vs table layout debate in his blog entry "Tables my ass" - http://www.htmldog.com/ptg/archives/000049.php . A quite good article.
5
2142
by: Ian Sykes | last post by:
I'm writing a web application which has the following requirements for the presentation of tabular data in HTML to users: * Columns and rows can be re-sized by dragging the mouse * Internal vertical scrolling is implemented, with column headers remaining fixed during scrolling * Works with Internet Explorer and Netscape. Compatibility with additional browsers is highly desirable.
31
5730
by: Arthur Shapiro | last post by:
I'm the webmaster for a recreational organization. As part of one page of the site, I have an HTML "Calendar at a Glance" of the organization's events for the month. It's a simple table of a calendar, 7 across by whatever needed down, and I manually create it each month - not a big deal. Every day I go in and darken the background color of the current day's cell by changing the appropriate <TD> entry to <TD bgcolor="c63800"> and...
11
3583
by: Norman L. DeForest | last post by:
Am I misunderstanding the CSS specifications or is Firefox (version 1.0.6) (and Opera) doing the wrong thing? It appears that Firefox 1.0.6 includes the border in width calculations for tables but not in height calculations. Oh, and Opera version 8.02 does the same thing. |<-->| |<-->| <------ border |<------------>| <------ table contents
1
3555
by: Thanks | last post by:
I have a routine that is called on Page_Init. It retrieves folder records from a database which I display as Link Buttons in a table cell. I set the table cell's bgcolor to a default color (say black for example). I am dynamically creating the LinkButton controls and adding them into the table cell and I've also hooked up an event handler for each LinkButton's Click event. This all works fine. Now in the Link Button's Click event...
7
2635
by: Shawn B. | last post by:
Greetings, I am trying to create a table that has a scrolling body. The problem I'm experiencing is that if the columns in the "body" part of the table exceed the width of the "header" then they columns lose their alignment. Can anyone help me correct this?
4
1736
by: Martin Eyles | last post by:
Hi! I am trying to make several 1x3 tables on a webpage, where all three cells have black backgrounds and white text. However, I want the space around each of the cells, and the whole box to be coloured (see http://www.bytronic.com/martinTest/table.gif). I will be programatically changing the colour of this border on the client side, based on data from an embeded asp.net page. Is there a way I can set the html/css up so that I can do...
5
1958
by: vpravin | last post by:
Hi guys...i am a super noob with html and aspx.. i didnt start this project but i am modifying it... q: how do i change the width of a column: Thats the table which is within a text box <asp:Table id="regulatoryDetails" runat="server" Font-Size="X-Small" Width="400px" Height="8px"
7
3758
oll3i
by: oll3i | last post by:
i want to change the values in two columns one colum is a combobox and the secons column is editable too i want to get the value of that second column and the value of combobox and sent that to another application i have setValueAt(Object value,int row, int col) but it works only for combobox when i enter some data in the second editable column the value i entered disappears rows are a list data = new...
0
9708
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9587
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10324
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10085
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7623
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6857
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5527
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4302
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3827
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.