Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
wml2005 #1
colgroup tag
I'm taking a class in html. We're working on tables, specifically the
<colgroup> tag. I cannot get this tag to work in dreamweaver mx 2004. I'm on an
imac G5 running 10.3.5. I can't even view the lesson's coding examples through
any of my browsers (the latest versions of firefox, explorer, and safari). I've
gone onto W3schools site and the presumed effect of the <colgroup> tag does not
show up for me. I've tried Taco HTML writer which offers a view of the page
independent of a browser and it still doesn't work. I've tried copying coding
off W3schools and other sites to see if the lesson's coding was inaccurate in
some way. That's not it. I've search for a preference in dreamweaver that
might solve this problem, but I've been unsuccessful. Any suggestions?
wml2005 Guest
-
COL & COLGROUP tag
Is it possible to get the COL and/or COLGROUP tags emitted when rendering the datagrid? without creating new classes? I have checkboxes and buttons... -
Murray *ACE* #2
Re: colgroup tag
What are you expecting the <colgroup> tag to do for your display in DW?
Show us the code that you are using, please.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"wml2005" <webforumsuser@macromedia.com> wrote in message
news:ef67ai$4j$1@forums.macromedia.com...> I'm taking a class in html. We're working on tables, specifically the
> <colgroup> tag. I cannot get this tag to work in dreamweaver mx 2004. I'm
> on an
> imac G5 running 10.3.5. I can't even view the lesson's coding examples
> through
> any of my browsers (the latest versions of firefox, explorer, and safari).
> I've
> gone onto W3schools site and the presumed effect of the <colgroup> tag
> does not
> show up for me. I've tried Taco HTML writer which offers a view of the
> page
> independent of a browser and it still doesn't work. I've tried copying
> coding
> off W3schools and other sites to see if the lesson's coding was inaccurate
> in
> some way. That's not it. I've search for a preference in dreamweaver that
> might solve this problem, but I've been unsuccessful. Any suggestions?
>
Murray *ACE* Guest
-
wml2005 #3
Re: colgroup tag
Thank you very much for responding. Here's the code.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<TITLE>TEAM STANDINGS</TITLE>
</HEAD>
<BODY>
<H3 ALIGN="CENTER">
<TABLE BORDER="3" CELLSPACING="0" CELLPADDING="3">
<COLGROUP ALIGN="center" STYLE="font: 14 pt Arial; color:blue">
<COLGROUP ALIGN="center" SPAN="4">
<COL SPAN="3">
<COL STYLE="font-weight:900; color:red">
<TR><TH>
<TD>Won
<TD>Lost
<TD>Tied
<TD>Points
<TR><TH>Cougars
<TD>11
<TD>0
<TD>2
<TD>24
<TR><TH>Panthers
<TD>6
<TD>3
<TD>4
<TD>16
<TR><TH>Tigers
<TD>3
<TD>9
<TD>1
<TD>7
<TR><TH>Lions
<TD>1
<TD>9
<TD>3
<TD>5
</TABLE>
</H3>
</BODY></HTML>
Since I posted this question, I've downloaded the latest Opera browser as well
as their html text editor widget. Now I'm able to view the correct alignment,
but I still can't see any style attributes (color, font, font size, and
font-weight. Thanks again for your help.
wml2005 Guest
-
Murray *ACE* #4
Re: colgroup tag
1. Points are not a web-safe metric for font sizes. They are print
oriented. It's better to use a relative, or screen/pixel-based metric, like
pixels, em, percents, en, ex, or font size names (small, medium, etc.).
2. There should be no space between the size value and its unit, e.g.,
this -
14pt
not this -
14 pt.
For what it's worth, there are only two practical font weights: normal, and
bold. It happens that 900 is the same as bold. Other values are just
ignored by browsers....
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"wml2005" <webforumsuser@macromedia.com> wrote in message
news:ef6ns9$hvo$1@forums.macromedia.com...> Thank you very much for responding. Here's the code.
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
> <HTML>
> <HEAD>
> <TITLE>TEAM STANDINGS</TITLE>
> </HEAD>
> <BODY>
> <H3 ALIGN="CENTER">
> <TABLE BORDER="3" CELLSPACING="0" CELLPADDING="3">
> <COLGROUP ALIGN="center" STYLE="font: 14 pt Arial; color:blue">
> <COLGROUP ALIGN="center" SPAN="4">
> <COL SPAN="3">
> <COL STYLE="font-weight:900; color:red">
> <TR><TH>
> <TD>Won
> <TD>Lost
> <TD>Tied
> <TD>Points
> <TR><TH>Cougars
> <TD>11
> <TD>0
> <TD>2
> <TD>24
> <TR><TH>Panthers
> <TD>6
> <TD>3
> <TD>4
> <TD>16
> <TR><TH>Tigers
> <TD>3
> <TD>9
> <TD>1
> <TD>7
> <TR><TH>Lions
> <TD>1
> <TD>9
> <TD>3
> <TD>5
> </TABLE>
> </H3>
> </BODY></HTML>
>
> Since I posted this question, I've downloaded the latest Opera browser as
> well
> as their html text editor widget. Now I'm able to view the correct
> alignment,
> but I still can't see any style attributes (color, font, font size, and
> font-weight. Thanks again for your help.
>
Murray *ACE* Guest



Reply With Quote

