Formating table

I use a table on a template to format web pages. For example
the table is used to structure the site evenly throughout, but it
is invisible at run time. Tables are a problem with accessability.
W3C recommend using a style sheet. I do not know how to create a
table using a style sheet. Does anybody know how to use style
sheets to create tables that are compliant with W3C.

> Does anybody know how
> to use style sheets to create tables that are compliant
with W3C.
You don't. The thrust of this suggestion is to use CSS to
build your pages
without tables altogether.
The accessability problems with tables are that screen
readers read their
contents from left to right - this may NOT be the optimal
method for *your*
content, since with tables the fact that content appears in
two horizontally
adjacent columns may not imply that it should be *read*
contiguously.
To reach the point where you are able to replace tables with
CSS layout
methods, you will have to study CSS and practice it with some
dedication.
Murray --- ICQ 71997575
Adobe Community Expert
(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
==================
"computaquark" <[email protected]> wrote in
message
news:ehgg6e$ajt$[email protected]..
>I use a table on a template to format web pages. For
example the table is
>used
> to structure the site evenly throughout, but it is
invisible at run time.
> Tables are a problem with accessability. W3C recommend
using a style
> sheet. I
> do not know how to create a table using a style sheet.
Does anybody know
> how
> to use style sheets to create tables that are compliant
with W3C.
>

Similar Messages

  • Combine Columns From Separate Arrays Into One Formatted Table

    What I'm trying to do is make two WMI queries with 2 different classes for a list of machines and then patch the columns together into one single array that is formatted as a table with columns and rows. I seem to keep banging my head against the wall and
    I can't help but feel that the answer is simple. I can certainly create an array that contains all 3 columns (such as in the commented out part) but no matter which angle I go at it, it always seems to end up as all the data in one single row in each column
    rather than a nicely formatted table. I've even tried constructing separate custom objects and adding the different objects to the array but that's obviously not working. Below is the code of the last thing I tried. I need someone to bash it to death and tell
    me the (most likely obvious) thing that I'm doing wrong. Thanks!
    $failedos = @()
    $failedcs = @()
    $ccs = get-adcomputer -property operatingsystem -filter {name -like "*-CC*"} | select name | sort name
    $cs = foreach ($cc in $ccs){$cc.name | % {if ($c=get-wmiobject -computername $cc.name -class win32_computersystem -ErrorAction SilentlyContinue){$c | select @{Name="Name";Expression={$_.Name}}, @{Name="Model";Expression={$_.Model}}} else {$failedcs += "$_"}}}
    $os = foreach ($cc in $ccs){$cc.name | % {if ($o=get-wmiobject -computername $cc.name -class win32_operatingsystem -ErrorAction SilentlyContinue){$o | select @{Name="OperatingSystem";Expression={$_.caption}}} else {$failedos += "$_"}}}
    #[array]$osprops = @{'Name'=$cs.Name;'Model'=$cs.Model;'OperatingSystem'=$os.OperatingSystem}
    $result = @()
    Foreach ($Line in $cs) {
    $MyCustomObject = New-Object -TypeName PSObject
    Add-Member -InputObject $MyCustomObject -MemberType NoteProperty -Name "Name" -Value $Line.name -Force
    Add-Member -InputObject $MyCustomObject -MemberType NoteProperty -Name "Model" -Value $Line.Model -Force
    $result += $MyCustomObject
    foreach ($Line2 in $os) {
    $MyCustomObject2 = New-Object -TypeName PSObject
    Add-Member -InputObject $MyCustomObject2 -MemberType NoteProperty -Name "OperatingSystem" -Value $Line2.OperatingSystem -Force
    $result += $MyCustomObject2

    Any help?
    $ccs = get-adcomputer -property operatingsystem -filter {name -like "*-CC*"} |
    select -ExpandProperty name | sort
    $Result =
    Foreach ($CC in $CCs)
    $Object =
    New-Object PSObject -Property @{ Name = $CC
    Model = 'Failed'
    OperatingSystem = 'Failed'
    Try {
    $Object.Model =
    get-wmiobject -computername $CC -class win32_computersystem -ErrorAction Stop |
    select -ExpandProperty Model
    $Object.OperatingSystem =
    get-wmiobject -computername $CC -class win32_operatingsystem -ErrorAction Stop |
    select -ExpandProperty Caption
    Catch{}
    Finally { $Object }
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Get-Mailbox -Database and Format-Table questions

    Hi,
    I've written a script that will get the number of mailboxes on each database on our exchange server and then create a report and email it to everyone. This is the first script that I've ever wrote so I'm fumbling around and don't really know what I'm doing.
    I want to learn though so any advice is welcome. It is working but it still doesn't look as nice as I'd like for it to and I was hoping someone could look at my code and tell me what I could do to make it better. Here is part of it and then below shows the
    output text file as it is formatted. I'd like for it to be all one one table instead of each being a separate one but I don't know how to do that. I was reading that you can use $obj but when I was reading it I was completely lost about what was going on.
    Thanks.  
    Get-Mailbox -Database DB0 | Group-Object -Property:Database | select name,count | Format-Table -Autosize > M:\Scripts\DBcountreport.txt
    Get-Mailbox -Database DB1 | Group-Object -Property:Database | select name,count | Format-Table -Autosize -HideTableHeaders >> M:\Scripts\DBcountreport.txt
    Get-Mailbox -Database DB2 | Group-Object -Property:Database | select name,count | Format-Table -Autosize -HideTableHeaders >> M:\Scripts\DBcountreport.txt
    ./DBcountreport.txt
    Name Count
    DB0    167
                       ---  I want these spaces removed basically           
    DB1    167
    DB2    174
    DB3    169

    Hi Belthasar,
    try this:
    $temp = @(Get-Mailbox -Database DB0 | Group-Object -Property:Database | select name,count)
    $temp += @(Get-Mailbox -Database DB1 | Group-Object -Property:Database | select name,count)
    $temp += @(Get-Mailbox -Database DB2 | Group-Object -Property:Database | select name,count)
    $temp += @(Get-Mailbox -Database DB3 | Group-Object -Property:Database | select name,count)
    $temp | Format-Table -Autosize > "M:\Scripts\DBcountreport.txt"
    What this does is not write 4 tables to a text file, but combines the four tables and then writes the resultant one to the text file.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Replace content within an already formatted table

    Hi,
    I am hoping someone can help me with a table problem I am having.
    I currently have a formatted table in InDesign CS4 with old information inside it, and I am looking to replace the current data with updated data from a Word table without having to copy and paste the new data into each cell.
    I previously used the script PopTabFmClip when I used CS2, but apparently this is now not needed in CS4. So long as I have the right amount of rows and columns.
    Like I said, I am taking the new information from a Word table, and have had some success in doing so for smaller tables, but when I try and re-populate a larger table it seems to overflow the table and create now rows etc. Almost like a paragraph break signals it to move to the next row.
    Also, the information that does get added moves from row to row as apposed to column (I.e. the information that supposed to be inserted into the column to the right is inserted in the row below)
    Hopefully someone has experienced this problem before and can provide some help.
    Also, if this question has come up before, could you please direct me to the topic.
    Thanks in advance.

    Let me start by saying I hate working with tables, so I'm not good at it.
    The reason the script is no longer necessary is the functionality has been taken over by the use of cell and table styles, so if you define cell styles and apply them religeously, in theory they will control the formatting.

  • Help with Importing Excel Data into Formatted Tables

    This is my first post, here, so please be gentle!
    I am a relatively new user of InDesign CS4, and I am creating a 70-pg manufacturer's price book.  A very large portion of each page is going to be size and price information imported from a large Excel spreadsheet.
    I have created the table format that I'd like to use for each page, but the trouble comes when I import the Excel data into that table.  For some reason, when I import, it all dumps into one cell.  Would it be best to import as an unformatted table, and then format the table each time, or is there a way to simply import the data into my pre-formatted table?  I've seen how the former is done, but the latter seems much easier (...although that could be my inexperience talking).
    Any advice would be greatly appreciated!
    Thanks so much,
    Laura (V1500)

    Thank you both so much for your time!  This is exactly what I needed.
    Cheers
    Laura

  • Get-ADUser Format-Table not working as expected

    Hi Everyone,
    I'm using the following code:
    Import-module ActiveDirectory
    $USERS = Import-Csv C:\temp\R12_Active_Users.csv
    $USERS|foreach {Get-ADUser -Identity $_.samaccountname -properties * | FT -autosize samaccountname, Name, UserPrincipalName, mail, objectguid, distinguishedname, description, PhysicalDeliveryOfficeName, EmployeeID, EmployeeNumber}
    I'm not out'ing this to a text file or exporting to a CSV yet, as the format is not what I am expecting.
    Instead of having a table with the headings for each value, followed by the values for all the samaccountnames listed in the CSV that is being imported, I am getting a new heading for all values for each samaccountname.
    Is someone able to advise me on where I'm going wrong? I am getting the information that I require, I'm just not getting the table set correctly.
    Below is an example of the output:
    samaccountname                                      UserPrincipalName                   
    mail
    user1                                                        
    [email protected]              
    [email protected]
    samaccountname                                      UserPrincipalName                   
    mail
    user2                                                        
    [email protected]              
    [email protected]
    samaccountname                                      UserPrincipalName                   
    mail
    user3                                                        
    [email protected]              
    [email protected]
    Output should look like this:
    samaccountname                                      UserPrincipalName                   
    mail
    user1                                                        
    [email protected]              
    [email protected]
    user2                                                        
    [email protected]              
    [email protected]
    user3                                                        
    [email protected]              
    [email protected]
    user4                                                        
    [email protected]              
    [email protected]
    Any assistance on this would be greatly appreciated.
    Cheers,
    Simon

    It is because you are piping over to Format-Table within your ForEach-Object loop, try changing it to
    Import-module ActiveDirectory
    $USERS = Import-Csv C:\temp\R12_Active_Users.csv
    $USERS |foreach {
    Get-ADUser -Identity $_.samaccountname -properties *} |
    FT -autosize samaccountname, Name, UserPrincipalName, distinguishedname, description, PhysicalDeliveryOfficeName, EmployeeID, EmployeeNumber
    If you find that my post has answered your question, please mark it as the answer. If you find my post to be helpful in anyway, please click vote as helpful.
    Don't Retire Technet

  • Tabulator: format tables with Python

    Project page: http://xyne.archlinux.ca/projects/python3-tabulator/
    I've been using this module for ages now but have only now got around to releasing it. It makes it dead-simple to print nicely formatted tables in plaintext and other formats, and I'll add gradually.
    If you ever find yourself iterating lists to find the longest member in order to correctly format the column, then this is for you.
    There's a simple example on the project page to you get started. Just ask if anything is unclear.
    Part of a larger table as an example:
    Quantity Value Uncertainty Unit
    {220} lattice spacing of silicon 1.920155714e-10 3.2e-18 m
    alpha particle-electron mass ratio 7.2942995361e+3 2.9e-6
    alpha particle mass 6.64465675e-27 2.9e-34 kg
    alpha particle mass energy equivalent 5.97191967e-10 2.6e-17 J
    alpha particle mass energy equivalent in MeV 3.727379240e+3 8.2e-5 MeV
    alpha particle mass in u 4.001506179125e+0 6.2e-11 u
    alpha particle molar mass 4.001506179125e-3 6.2e-14 kg mol^-1
    alpha particle-proton mass ratio 3.97259968933e+0 3.6e-10
    Angstrom star 1.00001495e-10 9.0e-17 m
    atomic mass constant 1.660538921e-27 7.3e-35 kg
    atomic mass constant energy equivalent 1.492417954e-10 6.6e-18 J
    atomic mass constant energy equivalent in MeV 9.31494061e+2 2.1e-5 MeV
    atomic mass unit-electron volt relationship 9.31494061e+8 2.1e+1 eV
    atomic mass unit-hartree relationship 3.4231776845e+7 2.4e-2 E_h
    atomic mass unit-hertz relationship 2.2523427168e+23 1.6e+14 Hz
    atomic mass unit-inverse meter relationship 7.5130066042e+14 5.3e+5 m^-1
    atomic mass unit-joule relationship 1.492417954e-10 6.6e-18 J
    atomic mass unit-kelvin relationship 1.08095408e+13 9.8e+6 K
    atomic mass unit-kilogram relationship 1.660538921e-27 7.3e-35 kg

    Hi,
    There are two workarounds that you could try.  1.  if your system could print to pdf, you could print each response as pdf instead of export as pdf.
    2. you could duplicate the form with responses, open the dulplicate form, remove some old responses (the one that you already exported) so you don't see the 13000 visible cells dialog, then you could export each response to pdf. 
    Hope these workarounds could help you while we are getting the fix out.
    Regards,
    Perry

  • Commands / Format Table, what happened

    In Dreamweaver 2004, under the Commands menu was: Format
    Table.
    Now, In DW CS3, I don't see that command.
    Where do I find it?
    thanks,
    dave

    You are correct, but would it have killed them to leave it?
    Why not remove
    Tables all together?
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:f5c6v9$330$[email protected]..
    > You don't need it. It used code methods that are no
    longer considered
    > best practice. It's easy enough to replace with CSS.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (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
    > ==================
    >
    >
    > "Pizza Good" <[email protected]> wrote in
    message
    > news:f5c6bv$2e6$[email protected]..
    >> Regretfully I think the answer is it was removed
    because Adobe thought
    >> YOU no longer needed it. I can't stand when
    companies do this.
    >>
    >> In computer software standards and documentation,
    the term deprecation is
    >> used to discourage usage of a particular software
    feature, usually
    >> because it has been superseded by a newer/better
    version.
    >>
    >> *
    http://en.wikipedia.org/wiki/Deprecation
    >>
    >>
    >> "DaveBarnes" <[email protected]> wrote
    in message
    >> news:f5c544$111$[email protected]..
    >>> In Dreamweaver 2004, under the Commands menu
    was: Format Table.
    >>> Now, In DW CS3, I don't see that command.
    >>> Where do I find it?
    >>>
    >>> thanks,
    >>> dave
    >>
    >>
    >
    >

  • PropertyAssignmentException if using Format-Table

    Hey,
    I try to create Excel worksheets for each running process.
    $Excel = New-Object -ComObject Excel.Application
    function SelectApps
    BEGIN {}
    PROCESS {Get-Process | Select ProcessName | Group ProcessName | Format-Table Name -Auto}
    END {}
    ForEach ($i in SelectApps)
    $Excel.Worksheets.Add()
    $Excel.Worksheets.Item(1).Name = "$i"
    #$i
    But this doesn't work and ends with the following Error.
    Ausnahme beim Festlegen von "Name": "Der eingegebene Name für ein Blatt oder Diagramm ist ungültig. Stellen Sie Folgendes sicher:
    • Der eingegebene Name weist maximal 31 Zeichen auf.
    • Der Name enthält keines der folgenden Zeichen: : \ / ? * [ oder ]
    • Es wurde ein Name eingegeben."
    Bei Zeile:4 Zeichen:31
    + $Excel.Worksheets.Item(1). <<<< Name = "$i"
    + CategoryInfo : InvalidOperation: (:) [], RuntimeException
    + FullyQualifiedErrorId : PropertyAssignmentException
    What I need to do to solve this problem?
    Greetings
    Uemit

    Don't use format-* if you are expecting to do more with the data. PowerShell adds its own custom formatting to the data and essentially ruins it for use with anything else other than displaying it on the console.
    More info:
    http://learn-powershell.net/2012/04/18/scripting-games-2012-know-when-to-use-format-table/
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • Powershell Get-Service Select vs. Format-Table

    I'm working on a brief script to query a remote machine for it's services, which services the services "require" to run, as well as what services are dependent on that service to run.
    The information is all there, and I can dump the data to the screen easily enough with Format-Table.  I'd *like* to dump the information to a tab-separated file, or Excel... I've dumped to excel before using a loop and individual queries, but this has
    me stumped.
    Bear with my fairly inarticulate description here, but it looks like the "RequiredServices" and "DependentServices" are an array - when dumped to the screen they appear in braces.  
    Ex:
    Get-Service -ComputerName $computer | Format-Table MachineName,Status,Name,DisplayName,RequiredServices,DependentServices -AutoSize -Wrap
    Result:
    mycomputername Stopped RpcLocator                     Remote Procedure Call (RPC) Locator                  {LanmanWorkstation}          
    mycomputername Running RpcSs                          Remote Procedure Call (RPC)                          {DcomLaunch}  
                                   {xmlprov, WZCSVC, wscsvc, WmiApSrv...}   
    The problem is, this is only useful to the screen, and I'd like to dump this information into columns in Excel.
    I tried the same thing using Select instead:
    Code:
    Get-Service -ComputerName $computer | Select MachineName,Status,Name,DisplayName,RequiredServices,DependentServices | export-csv -delimiter "`t" -Path "\\Pathtofile\$computer.TestOutput.ttx"
    Result (from file):
    "mycomputername " "Stopped"
    "RpcLocator" "Remote Procedure Call (RPC) Locator"
    "System.ServiceProcess.ServiceController[]"
    "System.ServiceProcess.ServiceController[]"
    "mycomputername " "Running"
    "RpcSs" "Remote Procedure Call (RPC)"
    "System.ServiceProcess.ServiceController[]"
    "System.ServiceProcess.ServiceController[]"
    The "System.ServiceProcess.ServiceController[]" is what I'm assuming is a returned array in the Format-Table.
    How can I get that data from "System.ServiceProcess.ServiceController[]" into a single cell's worth of output for export?
    I would greatly appreciate any input.

    This mostly works and thanks so much!  What I seeing in the returned data, though, is that in cases where there are single required and/or dependent services, output is "System.ServiceProces.ServiceController", while in cases where there are
    multiple required and/or dependent services, output shows the services listed in a single cell.
    For instance, here's the output for DcomLaunch:
    "machinename"
    "Running"
    "DcomLaunch"
    "DCOM Server Process Launcher"
    "xmlprov WZCSVC wscsvc WmiApSrv WinRM SharedAccess 6to4 winmgmt VSS TlntSvr Irmon FastUserSwitchingCompatibility TermService RasAuto RasMan TapiSrv STSchedEx StiSvc srservice Spooler Sophos Web Control Service Sophos Device Control Service Sophos AutoUpdate
    Service ShellHWDetection Schedule SAVService MSDTC SamSs RemoteRegistry RemoteAccess ProtectedStorage PolicyAgent NtmsSvc Netman napagent MSIServer Messenger hkmsvc helpsvc SENS EventSystem ersvc Dot3svc EapHost dmadmin dmserver CryptSvc COMSysApp BITS AudioSrv
    RpcSs"
    Here's the screen output using Filter-Table - where you can see the empty field, shown above as "" is a {}.  I *do* like that your turn on the code shows *ALL* the services instead of truncating.
    machinename  Running DcomLaunch                     DCOM Server Process Launcher                         {}          
                                     {xmlprov, WZCSVC, wscsvc, WmiApSrv...}
    However, here's the output for "RasMan" - 
    The tab separated file shows:
    "30888sure04"
    "Stopped"
    "RasMan"
    "Remote Access Connection Manager"
    "System.ServiceProcess.ServiceController"
    "System.ServiceProcess.ServiceController"
    Where the Filter-Table shows:
    30888sure04 Stopped RasMan                         Remote Access Connection Manager                     {Tapisrv}          
                              {RasAuto} 
    The difference I see is that the Dependent and Required service in this case is a single-word name, and only one service, rather than multiple.
    Is this because of the formatting in the code below?  I really need to dig deeper into this part to understand better what's going on.
    @{N='RequiredServices'; E={"$($_.RequiredServices)" }},
    @{N='DependentServices'; E={"$($_.DependentServices)"}

  • CS3 Where is Format Table?

    DM8 has Format Table. Where is it in CS3?
    Cliff

    The next actions help you to return the function
    “Format Table” to DreamWeaver cs3:
    1) Close the program DreamWeaver
    2) Take three files “Format Table.htm”,
    “Format Table.js”, “tableFormats.js” from
    http://rapidshare.com/files/66459615/Format_Table_for_DreamWeaver.zip.html
    3) Copy these three files to your DreamWeaver Folder to
    \configuration\Commands (for example c:\Program Files\Adobe\Adobe
    Dreamweaver CS3\configuration\Commands)
    4) Make backup copy of the file
    “…\configuration\Menus\menu.xml”
    4a) Open “…\configuration\Menus\menu.xml”
    4b) Find in the “menu.xml” the string:
    …..file="Commands/Sort Table.htm"
    id="DWMenu_Commands_SortTable" />
    4c) After finded string add the string : <menuitem
    name="Format Table" file="Commands/Format Table.htm"
    id="DWMenu_Commands_FormatTable" />
    4d) Save and close “menu.xml”
    5) Open the program DreamWeaver and you will see in the menu
    Command the function “Format Table”
    6) Congratulate you

  • Format Table Contents

    Hello!
    First of all, I don't know, if im right here. I've got a problem with Visual Composer but its the VC from the Sneak Preview Edition SPS07.
    Well, VC itself is working. I use a webservice and show the result in a table. In every row there is a Date. So far this works. Now I want to format this date. Therfore I use the expression ' DSTR(@date,"yyyy") ' to only get the year. But in this case, I get the following error:
    Error in executing a process for Flex compilation, Error 1103: There is no property with the name 'ROW1'.
    Compiling works fine, the error occurs while deploying.
    If I use only ' @date ' as expression, there is the same error. But why is an property named ROW1 missing if I want to format the data field? I also get this error on string fields, even if I use predefined formattings as "upper case", "lower case"...
    Has anyone an idea about that?
    Thanks for help,
    Christian

    Hi,
    Even I am having a similar problem. There is a date type column. I have formatted it as DSTR(@@,'DD MON'). This works fine in VC, Preview. I am able to deploy to Portal.
    But when i run the iview in Portal, error given is "Illegal expression entered in operator". But a format string as DSTR(@@,'DD.MM') works fine. Problem is with MON. Can somebody help.
    Thanks
    Sumant

  • Can't format tables anymore in a CSS layout

    Why can't I insert a regular table, and be able to select a
    cell, row, column, whatever, and change the cell color like I did
    before CSS? If I have a DIV, I'm supposed to be able to insert
    regular html content inside it, right?
    I have a DIV with a red background color set. I insert a
    small table for some data, and the table punches a hole
    (figuratively speaking) in the red background. Okay, I try to color
    the table background cells red, and it doesn't matter. I then setup
    a style sheet (class) just for that one table, and give it a red
    background, and again, no go.
    I'm about ready to abandan CSS for layout, I really am. There
    are no declarations in my body tags or anywhere else that says what
    to do with a table.
    What do I have to do to be able to color cells and format a
    table like non-css pages? I have many legacy sites with charts and
    data in regular tables (I'm not talking about for layout, but for
    regular tabular data), and when I try to copy and paste these into
    a new page, the table and data comes, but all the coloring is gone.
    This seems very dumb. Any insights?

    > I have a DIV with a red background color set. I insert a
    small table for
    > some
    > data, and the table punches a hole (figuratively
    speaking) in the red
    > background. Okay, I try to color the table background
    cells red, and it
    > doesn't
    > matter. I then setup a style sheet (class) just for that
    one table, and
    > give it
    > a red background, and again, no go.
    Copy and paste the following into a new DW page - you will
    see that you can
    have coloured cells and or rows. At least that's what I
    believe you are
    trying to do.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    /*the outer div container */
    #test {
    background-color:#CC0000;
    width: 400px;
    margin: 0 auto;
    padding: 10px; /* to add a bit of padding between the div and
    the centered
    table */
    /*given the table an ID rather than a class - you can style
    as many tables
    as you like - giving each table a unique ID */
    #tableone {
    width: 350px;
    margin: 0 auto;
    border: 1px solid black; /*border added to define the outside
    of the table
    within the div */}
    #tableone td {padding: 4px; width: 50%; } /* padding within
    the cells */
    #tableone .yellowcell {background-color:#FFCC00;}
    #tableone .bluecell {background-color:#0000CC;}
    #tableone .whitecell {background-color:#FFFFFF;}
    #tableone .purplecell {background-color:#CC00FF;}
    #tableone .greyrow {background-color:#666666;}
    -->
    </style>
    </head>
    <body style="background-color:#CC9999">
    <div id="test">
    <table width=300px; border="0" cellpadding="0"
    cellspacing="0"
    id="tableone">
    <tr>
    <td class="yellowcell">1 coloured cells </td>
    <td class="purplecell">2</td>
    </tr>
    <tr>
    <td class="whitecell">3</td>
    <td class="bluecell">4</td>
    </tr>
    <tr class="greyrow">
    <td>5 colored row </td>
    <td>6</td>
    </tr>
    </table>
    </div>
    </body>
    </html>
    Nadia
    Adobe® Community Expert : Dreamweaver
    Tutorials |SEO |Templates
    http://www.DreamweaverResources.com
    http://www.perrelink.com.au
    CSS Tutorials for Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/css.html

  • Formatting table of contents

    I've gotten the gist of creating a table of contents, but I'd like to add chapter and sub-section number markers before each title. I've bolded what I'm talking about:
    1. Chapter One
         1.1 sub section
         1.2 sub section
         1.3 sub section
    2. Chapter Two
        2.1 sub section
         2.2 sub section
         2.3 sub section
    Is this possible? How can this be done?
    Thank you

    The TOC is formatted automatically and is what it is. You can change the appearance and formatting of the TOC text but not the text itself which is picked up from the document.
    The only work around is to export the TOC and reimport it as plain text and then amend it.
    Peter

  • How to format table columns in Forms 10g

    Hi Friends,
    I have payment table in the format
    col1 col2
    1 dell
    2 HP
    3 Compaq
    4 Acer
    i want to show this info in forms 10g
    Payment has to be made tomorrow- DELL,HP,Compaq,ACER

    Hi Francois,
    I have create the from based on that data block only but it is coming sequentially, for example
    Label - Payment for items tomorrow-Dell
    HP
    Acer
    Compaq
    But i need the same thing in
    Payment for items tomorrow- Dell,HP,Acer,Compaq
    please advice how i can make this, contect of the column should come with comma

  • Applescript InDesign to Merge and Format Table Cells

    The subject line says it all:
    I have a document with a table that covers about 100 pages. The table has five or six columns, 25 to 35 rows. I want to be put my curser in a cell on a row, merge the cells in the row, then apply a paragraph format and a cell format.
    And I have no idea how to do that.
    Is anyone willing to give me a hand?
    Thanks!
    Jon.

    @Jon – See the following blog post:
    Marc Autret
    Improve the Way you Merge Cells in InDesign
    http://www.indiscripts.com/post/2012/04/improve-the-way-you-merge-cells-in-indesign
    Uwe

Maybe you are looking for

  • HP Envy 4-1038NR and HP Officejet pro 8600 N911n

    about 3 months ago this problem started... out of the blue.. no new apps or anything.  i was on the phone with tech support who had be install and uninstall drivers and after about an hour of trying things i was able to print.  as soon as i hung up p

  • Can't install Air 2.7 on Mac OS 10.6.7

    I have tried to apply all of the helpful hints on this forum (including Chris's AIR install repair script), but with no success.  What do I try now? An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator.

  • Duplicate and Virtual images in lightroom

    In order to keep the original file it is necessary to open a duplicate or virtual copy of an image in lightroom?

  • Can't switch on calandar for Googlemail account?

    In Settings>>Mail I can switch on Calandar, Contacts etc for my mobileme account and also my microsoft exchange account. Why cant I do this for my googlemail account? And is there a way around this? Many thanks, Dan.

  • Oracle VM Best Practices

    Hello, Can anybody share Best practices for Oracle VM implementation and the test plan executed to validate the implementation before moving to production. Thanks in advance Dani