Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
  3. #2

    Default 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

  4. #3

    Default 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>&nbsp;
    <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

  5. #4

    Default 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>&nbsp;
    > <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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139