Scrolling table cell -- request help

Hi,
I would like to make a scrollable table cell (about 300px wide and 400 px high) that can contain both images and text. The content of the cell needs to be scrollable.
I am a more than a newbie but not very skilled in Dreamweaver CS3 on a PC. I have worked a bit with CSS.
If someone could assist me, I would really appreciate it especially if you are able to point me to video tutorial in which this is demonstrated. I have a membership in both Lynda.com and Kelby Online Training but didn't see anything there on this subject.
I have read many posts on "scrollable DIVs" on the forum but haven't been able to apply them successfully.
I would appreciate anyone's assistance.
Many thanks.
Jane

Are you looking at adding a text box that can also contain pictures?
Sounds almost like an overflow style in CSS.
Something like this:
<div style="width: 300px; height: 400px; background-color: #FFFFFF; font-size: 11px; overflow: auto;">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</div>

Similar Messages

  • GrabFocus to Table Cell -pl help

    Hi
    I have a GUI where there is a JTable and few other components like JTextField, JCombox etc. When Focus of JTextField is lost, I want focus will go to cell(0,0) or any particular cell in the table. Anyone help me how do I force the focus to such specific cell of the table??
    Thanks in advance.
    Mortoza

    Hi Mortoza
    After focusLost() of your last JTextField call the following method:
    public void selectRow(int row, int column) {
    myTable.changeSelection(row, column, false, false);
    myTable.setRowSelectionInterval(row, row);
    myTable.requestFocus();
    Greetings,
    Triple Tuned member of hardcode.ch

  • Unable to edit a Table Cell. Help required.

    Hello Folks,
    Please I need some help.
    I have a java class which allows a user to enter and delete
    data into a table dynamically.
    So the user can enter any number of rows and once he clicks on the
    concerned row, he can also delete that row.
    I just have one small problem.
    I am unable to 'edit the cell'. i click on.
    can any one please help me on this. I'd like to send this class
    file.
    Can any one please send in their email address so I can attach this file
    Please some one respond.

    Hv u used something like this. What table model u r using. I hv used DefaultTableModel.
    c this piece of code: This might help.
    tblView = new JTable(model)
                   public boolean isCellEditable(int r,int c)
                        try
                             if(r == 0)
                                  return true;
                             else
                                  return false;
                        catch(Exception e)
                             apilError.createErrorLog(e,"Error1 class Bank_Reconciliation.java, in Constructor line no 194");
                             CallErrorMessage(apilError.systemerror,2,"Error");
                        return false;
                   public static final int a1=0;
                   public static final int a2=1;

  • JRadioButton grouped in a table cell. Help Needed.

    Hello...
    I am looking for code samples or exaples of how to implement a group of 3 radio buttons in a column of each row i create. I have not been able to find anything and I would appreciate any leads or code samples.
    basically i have 4 or 5 columns and one of the colums will take 3 radio buttons but only 1 of the 3 can be selected at a time.
    this is kind of what my table looks like.
    ListTable.setModel(new javax.swing.table.DefaultTableModel(
                new Object [][] {
                    {"000000000061", "05/05/2005", "this is where the 3 radio buttons will be grouped","05/05/2004"},
                    {null, null, null, null}
                new String [] {
                    "List ID", "Expiration Date", "Status", "Date Created"
                Class[] types = new Class [] {
                    java.lang.Object.class, java.lang.Object.class, java.lang.Boolean.class, java.lang.Object.class
                boolean[] canEdit = new boolean [] {
                    false, false, true, false
                public Class getColumnClass(int columnIndex) {
                    return types [columnIndex];
                public boolean isCellEditable(int rowIndex, int columnIndex) {
                    return canEdit [columnIndex];
            jPanel2.add(ListTable, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 44, 440, 130));Thanks very much.
    S

    Hope this helps :import javax.swing.*;
    import javax.swing.table.*;
    import java.util.Date;
    import java.util.Vector;
    import java.awt.*;
    import java.awt.event.*;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    public class TableTestPanel extends JPanel {
         private static final String[] COLUMN_NAMES = {"List ID", "Expiration Date", "Status", "Date Created"};
         private static final DateFormat DATE_FORMAT = new SimpleDateFormat("dd/MM/yyyy");
         private static class StatusPanel extends JPanel {
              private JRadioButton theSingleOption;
              private JRadioButton theMarriedOption;
              private JRadioButton theDivorcedOption;
              public StatusPanel() {
                   super(new GridLayout(3, 1));
                   setOpaque(true);
                   ButtonGroup buttonGroup = new ButtonGroup();
                   theSingleOption = new JRadioButton("Single");
                   theSingleOption.setOpaque(false);
                   add(theSingleOption);
                   buttonGroup.add(theSingleOption);
                   theMarriedOption = new JRadioButton("Married");
                   theMarriedOption.setOpaque(false);
                   add(theMarriedOption);
                   buttonGroup.add(theMarriedOption);
                   theDivorcedOption = new JRadioButton("Divorced");
                   theDivorcedOption.setOpaque(false);
                   add(theDivorcedOption);
                   buttonGroup.add(theDivorcedOption);
              public Status getStatus() {
                   if (theMarriedOption.isSelected()) {
                        return Status.MARRIED;
                   } else if (theDivorcedOption.isSelected()) {
                        return Status.DIVORCED;
                   } else {
                        return Status.SINGLE;
              public void setStatus(Status status) {
                   if (status == Status.MARRIED) {
                        theMarriedOption.setSelected(true);
                   } else if (status == Status.DIVORCED) {
                        theDivorcedOption.setSelected(true);
                   } else {
                        theSingleOption.setSelected(true);
         private static class Status {
              static final Status SINGLE = new Status("Single");
              static final Status MARRIED = new Status("Married");
              static final Status DIVORCED = new Status("Divorced");
              private final String myName; // for debug only
              private Status(String name) {
                   myName = name;
              public String toString() {
                   return myName;
         private static class TableEntry {
              private static int instanceNumber;
              private Long theId;
              private Date theExpirationDate;
              private Status theStatus;
              private Date theCreationDate;
              public TableEntry() {
                   instanceNumber++;
                   theId = new Long(instanceNumber);
                   theExpirationDate = new Date();
                   theStatus = Status.SINGLE;
                   theCreationDate = new Date();
              public TableEntry(Long anId, Date anExpirationDate, Status aStatus, Date aCreationDate) {
                   theId = anId;
                   theExpirationDate = anExpirationDate;
                   theStatus = aStatus;
                   theCreationDate = aCreationDate;
              public Long getId() {
                   return theId;
              public Date getExpirationDate() {
                   return theExpirationDate;
              public Status getStatus() {
                   return theStatus;
              public Date getCreationDate() {
                   return theCreationDate;
              public void setId(Long anId) {
                   theId = anId;
              public void setExpirationDate(Date anExpirationDate) {
                   theExpirationDate = anExpirationDate;
              public void setStatus(Status aStatus) {
                   theStatus = aStatus;
              public void setCreationDate(Date aCreationDate) {
                   theCreationDate = aCreationDate;
         private static class MyTableModel extends AbstractTableModel {
              private Vector theEntries;
              public MyTableModel() {
                   theEntries = new Vector();
              public void add(TableEntry anEntry) {
                   int index = theEntries.size();
                   theEntries.add(anEntry);
                   fireTableRowsInserted(index, index);
              public void remove(int aRowIndex) {
                   if (aRowIndex < 0 || aRowIndex >= theEntries.size()) return;
                   theEntries.removeElementAt(aRowIndex);
                   fireTableRowsDeleted(aRowIndex, aRowIndex);
              public int getRowCount() {
                   return theEntries.size();
              public String getColumnName(int column) {
                   return COLUMN_NAMES[column];
              public Class getColumnClass(int columnIndex) {
                   switch (columnIndex) {
                        case 0:
                             return Long.class;
                        case 1:
                             return Date.class;
                        case 2:
                             return Status.class;
                        case 3:
                             return Date.class;
                   return Object.class;
              public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
                   TableEntry entry = (TableEntry) theEntries.elementAt(rowIndex);
                   switch (columnIndex) {
                        case 0:
                             try {
                                  entry.setId(new Long(Long.parseLong(aValue.toString())));
                             } catch (NumberFormatException nfe) {
                                  return;
                             break;
                        case 1:
                             entry.setExpirationDate((Date)aValue);
                             break;
                        case 2:
                             entry.setStatus((Status)aValue);
                             break;
                        case 3:
                             entry.setCreationDate((Date)aValue);
                             break;
                        default :
                             return;
                   fireTableCellUpdated(rowIndex, columnIndex);
              public boolean isCellEditable(int rowIndex, int columnIndex) {
                   return true;
              public int getColumnCount() {
                   return 4;
              public Object getValueAt(int rowIndex, int columnIndex) {
                   TableEntry entry = (TableEntry) theEntries.elementAt(rowIndex);
                   switch (columnIndex) {
                        case 0:
                             return entry.getId();
                        case 1:
                             return entry.getExpirationDate();
                        case 2:
                             return entry.getStatus();
                        case 3:
                             return entry.getCreationDate();
                   return null;
         private static class DateRenderer extends DefaultTableCellRenderer {
              public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
                   super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
                   if (!(value instanceof Date)) return this;
                   setText(DATE_FORMAT.format((Date) value));
                   return this;
         private static class DateEditor extends AbstractCellEditor implements TableCellEditor {
              private JSpinner theSpinner;
              protected Object value;
              public DateEditor() {
                   theSpinner = new JSpinner(new SpinnerDateModel());
                   theSpinner.setOpaque(true);
                   theSpinner.setEditor(new JSpinner.DateEditor(theSpinner, "dd/MM/yyyy"));
              public Object getCellEditorValue() {
                   return theSpinner.getValue();
              public Component getTableCellEditorComponent(JTable table, Object value,
                                                                      boolean isSelected,
                                                                      int row, int column) {
                   theSpinner.setValue(value);
                   if (isSelected) {
                        theSpinner.setBackground(table.getSelectionBackground());
                   } else {
                        theSpinner.setBackground(table.getBackground());
                   return theSpinner;
         private static class StatusEditor extends AbstractCellEditor implements TableCellEditor {
              private StatusPanel theStatusPanel;
              public StatusEditor() {
                   theStatusPanel = new StatusPanel();
              public Object getCellEditorValue() {
                   return theStatusPanel.getStatus();
              public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) {
                   theStatusPanel.setStatus((Status)value);
                   if (isSelected) {
                        theStatusPanel.setBackground(table.getSelectionBackground());
                   } else {
                        theStatusPanel.setBackground(table.getBackground());
                   return theStatusPanel;
         private static class StatusRenderer extends StatusPanel implements TableCellRenderer {
              public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
                   setStatus((Status)value);
                   if (isSelected) {
                        setBackground(table.getSelectionBackground());
                   } else {
                        setBackground(table.getBackground());
                   return this;
         private MyTableModel theTableModel;
         private JTable theTable;
         public TableTestPanel() {
              super(new BorderLayout(0, 5));
              setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
              theTableModel = new MyTableModel();
              theTable = new JTable(theTableModel);
              theTable.setDefaultEditor(Date.class, new DateEditor());
              theTable.setDefaultRenderer(Date.class, new DateRenderer());
              theTable.setDefaultEditor(Status.class, new StatusEditor());
              theTable.setDefaultRenderer(Status.class, new StatusRenderer());
    // comment out the two preceding lines and uncomment the following one if you want a more standard editor
    //          theTable.setDefaultEditor(Status.class, new DefaultCellEditor(new JComboBox(new Status[]{Status.SINGLE, Status.MARRIED, Status.DIVORCED})));
              add(new JScrollPane(theTable), BorderLayout.CENTER);
              JToolBar toolBar = new JToolBar();
              toolBar.setFloatable(false);
              toolBar.add(new AbstractAction("Add new") {
                   public void actionPerformed(ActionEvent e) {
                        theTableModel.add(new TableEntry());
                        packTable();
              toolBar.add(new AbstractAction("Remove") {
                   public void actionPerformed(ActionEvent e) {
                        theTableModel.remove(theTable.getSelectedRow());
              add(toolBar, BorderLayout.NORTH);
         private void packTable() {
              TableColumnModel columnModel = theTable.getColumnModel();
              int columnCount = theTable.getColumnCount();
              int rowCount = theTable.getRowCount();
              int[][] preferredHeights = new int[columnCount][rowCount];
              TableCellRenderer renderer;
              Component comp;
              for (int col = 0; col < columnCount; col++) {
                   renderer = columnModel.getColumn(col).getCellRenderer();
                   if (renderer == null) {
                        renderer = theTable.getDefaultRenderer(theTableModel.getColumnClass(col));
                   for (int row = 0; row < rowCount; row++) {
                        comp = renderer.getTableCellRendererComponent(theTable, theTableModel.getValueAt(row, col), false, false, row, col);
                        preferredHeights[col][row] = (int) comp.getPreferredSize().getHeight();
              for (int row = 0; row < rowCount; row++) {
                   int pref = 0;
                   for (int col = 0; col < columnCount; col++) {
                        pref = Math.max(pref, preferredHeights[col][row]);
                   theTable.setRowHeight(row, pref);
         public static void main(String[] args) {
              final JFrame frame = new JFrame("TestRadioButtonRenderer");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setContentPane(new TableTestPanel());
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        frame.setSize(400, 300);
                        frame.show();
    }

  • Need content in table cell to scroll

    I Need content in table cell to scroll, so the window stays a constant height. Help.

    Google for 'scrollable DIV' or 'iframe'. Scrollable DIVs are better.

  • Search help in case of a table cell editor

    Hi
    I need a search help in case of a table cell editor as well as the the other requirement is that it shld be a reusable one.
    could anyone of u suggest me some methods
    regards
    Nikhil Tapkir

    There are several ways of doing this.
    1. Use OVS
    2. Create a Search help in R3. Call the function module.
    3. Create a Jar file which would provide the result .
    It is upto you on which ever way you want to provide
    Kumar

  • Table cell scroll bar overflow- why doesnt it work?

    Hi everyone.
    Ok, im have an existing document/site:
    http://www.helenbwilson.com/helen-portfolio-1.html
    I want the table cell in the left to have a scroll bar (only
    with the height part). I want the "block" of the images to have a
    height of 400px. Now, I have tried to do this, and for the most
    part got it to work-in another document:
    http://www.helenbwilson.com/CSS-test-01.html
    I am trying to replicate, but I have absolutely no idea why
    its not working now.
    I applied a css style and I want the same type of scroll, so
    when there are more images, it can have a scroll bar.
    Can anyone tell me what Im doing wrong? If I am not being
    clear, please let me know.
    Any info would be appreciated.
    Thanks
    -psy

    I think you mean something like this:
    Put this in your head:
    <style type="text/css">
    <!--
    .imageBlock {
    display: block;
    float: left;
    height: 400px;
    width: 250px;
    overflow: auto;
    background-color: #FF0000;
    -->
    </style>
    put this in your body:
    <div class="imageBlock">
    </div>
    If the table or other content you place inside your
    'imageBlock' div, is higher than 400 px, you'll get a vertical
    scrollbar.

  • Robohelp HTML 9 hyperlinks in table cells help

    Hi,
    I'm creating a table in robohelp html 9 and adding hyperlinks in the table cells. If the hyperlink is the first word in that cell robohelp is adding styling code to the link eg <td><a href="#" style="color: #0000ff; text-decoration: underline; ">test</a></td>.
    If I add a link to the second word in a table cell the styling does not appear or even if I add a space before the link the code does not appear eg <td>&#160;<a href="#">test</a> </td>.
    The code appears when I flick between design and HTML views but it does not make any difference in which view I create the link.
    No matter how many times I delete this code is keeps coming back. Can  anyone please help me? Is there some default that gives this the styling  code?Does anyone else get this issue?
    A table with the different examples is below. It was created in design view by clicking table>insert table>OK. Links added by clicking the insert hyperlink button.
    <table style="border-collapse: separate; border-collapse: separate;" cellspacing="0"
             width="33.333%" border="1">
        <col style="width: 100%;" />
        <tr>
            <td><a href="#" style="color: #0000ff; text-decoration: underline; ">test
             that has the added code</a></td>
        </tr>
        <tr>
            <td>&#160;<a href="#">test with space in front of link</a> </td>
        </tr>
        <tr>
            <td><a href="#" style="color: #0000ff; text-decoration: underline; ">test</a></td>
        </tr>
        <tr>
            <td>A <a href="#">test</a> </td>
        </tr>
    </table>
    Thanks in advanced

    I have the same problem with those stupid links in tables - I've been working on this for HOURS and HOURS...... Based on previous experience, I assumed it must only be me and an ill-formed stylesheet. The table/link issue just came to my attention because I am in the process of changing styles/formats to a new company standard (new link color) and thought I really screwed my CSS up as I was changing things!
    My only workaround thusfar has been to rewrite some data in the tables so that text will precede the link (yes, I did).  And where I just couldn't do that, I resigned myself to the problem and forced a different color on the links (changing the #0000ff).  One plus was that RH didn't rewrite the color code once it was changed manually..... but then I realized later that I didn't consider the hover color when I did this, so I now have to go back and correct them. 
    So glad to find your post...........
    I played with the idea of adding hidden text, but was worried that the problem was really a result of an issue with my CSS and doing that wasn't the proper way to fix it.   So, without guilt, I took Rick's suggestion and added an invisible dot/period at the beginning of every link in a table, when that link is the first or only content in the td.  Did the trick!  Now the links assume my declared css style! 
    I submitted a bug report.......
    Thank you!!!

  • "Continual Scroller" insert into Table Cel

    CS3 Mac
    http://www.cbrc.us
    I am trying to insert by drag&drop a vertical Continuous
    Scroller Library Item into a table cell. But, the preview shows the
    slideshow at the top left of the page.
    Even trying to specify the absolute position on the page
    results in a marginal improvement.
    What am I missing & how can I solve this?
    Thanks, -Barry

    Barry,
    Switch to Code View and drag/drop or cut/paste from there.
    HTH,
    Randy
    > I am trying to insert by drag&drop a vertical
    Continuous Scroller Library Item
    > into a table cell. But, the preview shows the slideshow
    at the top left of the
    > page.
    >
    > Even trying to specify the absolute position on the page
    results in a marginal
    > improvement.
    >
    > What am I missing & how can I solve this?

  • Help: Jbo Exception non blocking when using table cell renderer?

    Hi,
    JClient 9.5.2.
    When using Table Cell Renderer on an table cell attribute that is defined mandatory and activating the insert button, the (oracle.jbo.AttrValException) JBO-27014 exception is caught but it is not blocking and a new row is still inserted.
    The JClient component demo, table attribute list, has the same behaviour.
    You can add multiple rows even if not all required attributes have been documented.
    Can a Swing specialist help me on this one?
    Example of Table Cell Renderer:
    public class TableBasicStatusRenderer extends DefaultTableCellRenderer
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus,
    int row, int column)
    JLabel lb = new JLabel((String) StaticData.getStatusName(value)); // retrieves label from Map
    return lb;
    Regards
    Frederic

    Hi,
    I found something interesting, it could be a WORKAROUND!
    I noticed that in another detail panel with table layout the JBO exception was blocking and adding another row before completing the row was NOT possible.
    In the create method of the entity object of the displayed View Object I iterate over the detail row iterator to retrieve a maximum value.
    By the end of the method the pointer is positionned after the last row.
    So I added to the detail panel that doesn't block following code:
    In create method of detail Entity Object Impl (only one entity object involved for this View)
    // Retrieve master EntityObjectImpl from association:
    PostalTariffImpl postalTariffImpl = getPostalTariffAssoc();
    // Retrieve detail default row iterator
    RowIterator ri = postalTariffImpl.getPostalDetailGroupAssoc();
    // Position pointer after last row
    ri.last();
    ri.next();
    Question: Why does this solve the problem?
    Regards
    Frederic
    PS Les mysteres de l'informatique!

  • Table Cell Contents Disappears Please HELP!!!!

    PROBLEM: I have a different tables within different table cells in the Master table. One table per Master cell. Once I click on a table cell (0,0) and click on another table cell (1,1) the cell (0,0) blanks out. Likewise with other cells so that if I've click on all the cells in the Master Table and then clicked somewhere else all cell contents have disappeared.
    QUESTION: Do I need to call some UI refresh procedure????? I have a cell renderer which returns the table for each Master's Cell.
    I don't if this is clear but please help!
    Thanks

    Hi,
    the problem is that the DefaultCellEditor can't handle tables.
    So you have to write your CellEditor, which returns another table as Editor.
    class YourTableCellRenderer implements  TableCellRenderer{
        private  JTable table = new JTable();
        public Component getTableCellRendererComponent(JTable table,
                                                       Object value,
                                                       boolean isSelected,
                                                       boolean hasFocus,
                                                       int row,
                                                       int column){
             // set Data and Layout
             return table;
    }then set the Editor to your MasterTable (master) with.
    master.setCellEditor(TableCellEditor anEditor) or
    master.setDefaultEditor(Class columnClass,
                                 TableCellEditor editor);Hope this Helps.
    Michael

  • Need help: checkbox or radiobutton in table cell

    So basically i am looking for code samples or links to where i can find an implementation of 2 or 3 radiobuttons or checkboxes in a table cell/column, so that for each row, i can have a selection of A, B or C for a particular string in the first column. I can create a table with one checkbox, but i cant figure out 2 or more inside the same cell.
    thanks :)

    The JTable tutorial has a section titled "Using a Combo Box as an Editor". Take a look at their example for how to do this.
    http://java.sun.com/docs/books/tutorial/uiswing/components/table.html

  • Make Table Cells Transparents in InDesign CC 2014?? HELP!

    Hi!
    I used to be able to make the fill on my table cells different transparencies in indesign. I could make it so the background would lightly show through, and the text would still be legible. I also was able to make the table border be transparent so the background would totally shine through. I can't do this anymore with the new 2014 release.
    Does anyone know how to fix this??? Thanks!!!

    I think it works like this here:

  • I need a text field in a table cell to expand dynamically

    When I say expand I mean the whole cell has to grow as the content is entered into it, not just have a scroll bar present to contain the content, every new line should expand the table cell vertically. I've been looking all over and I can't seem to figure this one out, help?

    Turns out I just needed to search the forums better, here's a link to the thread with my solution:
    http://forums.adobe.com/thread/450522

  • Table cell links

    Got this link but cant seem to get them to work, need a
    little help if possible, ill talk you through what ive done,
    hopefully someone can point me in the right direction.
    1st hear is the link i got the example from : .[
    table cell
    links
    i made myself a wee demo table in dreamweaver.
    created a new CSS sheet with the following:
    table.navbar {
    border-collapse: collapse;
    table.navbar td {
    border: 1px solid #ccc;
    table.navbar td a{
    display: block;
    width: 9em;
    padding: 3px;
    text-decoration: none;
    table.navbar td a:link, table.navbar td a:visited {
    color: #000;
    background-color: #fff;
    table.navbar td a:hover, table.navbar td a:active {
    color: #fff;
    background-color: #666;
    I then attached the CSS sheet to the table but only a few
    minor things have changes, the entire table cell isnt showing as a
    link neither is it changing color like the demo on the website.
    HELP!
    What and where have i went wrong, thanks

    I used the styles you supplied and applied it to a table 1
    column x 3
    rows... this is the code and it works for me....
    You need to give your links an actual link, in this case I
    used a null link
    for demo purposes. Copy and paste the code into a new DW
    window and see if
    it works for you. White background, grey on hover over the
    cell. Here's
    another example that may be of interest (look at the code)
    http://www.dreamweaverresources.com/tutorials/clickable_cell.htm
    (similar
    to Garys' tutorial) and
    http://www.dreamweaverresources.com/tutorials/scroller.html
    <!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">
    <!--
    table.navbar {
    border-collapse: collapse;
    table.navbar td {
    border: 1px solid #ccc;
    table.navbar td a{
    display: block;
    width: 9em;
    padding: 3px;
    text-decoration: none;
    table.navbar td a:link, table.navbar td a:visited {
    color: #000;
    background-color: #fff;
    table.navbar td a:hover, table.navbar td a:active {
    color: #fff;
    background-color: #666;
    -->
    </style>
    </head>
    <body>
    <table border="0" cellpadding="0" cellspacing="0"
    class="navbar">
    <tr>
    <td><a href="javascript:;">link 1</a>
    </td>
    </tr>
    <tr>
    <td><a
    href="javascript:;">link2</a></td>
    </tr>
    <tr>
    <td><a
    href="javascript:;">link3</a></td>
    </tr>
    </table>
    </body>
    </html>
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    http://www.macromedia.com/devnet/dreamweaver/css.html
    - CSS Tutorials

Maybe you are looking for

  • Slow internet connection via AirPort on MacBook running 10.5.7

    The internet connection via AirPort on my MacBook is frustratingly slow, and I have no idea why. I have an AirPort Extreme connected to a Virgin Media cable modem, a new iMac and a two year-old MacBook, both running 10.5.7. No problems at all with th

  • Retake Quiz button not resetting questions

    Hi all I have a quiz with 7 questions, all single-answer questions. When the quiz results are displayed, the Retake Quiz button is displayed if they have failed the quiz. Upon clicking Retake Quiz, it takes me back to the start of the quiz, however,

  • The Thin Blue Line? :-)

    My sons 17" iMac has developed a problem, in that two thin blue lines have appeared from top to bottom on one side of the screen. has anyone else had this problem and is it D.I.Y curable or is it an Apple Repair job? Thanks in advance

  • WCV200 Camera using Adobe Flash Encoder

    Hi all, I have searched the forum for this topic and come up with no treads.  Is it possible to use the WCV200 camera with  Adobe Flash Encoder? I am hopeing to use this to feed the stream into the Flash Server so I can put it onto a website.  Thanks

  • Pricing Procedure for Quotation

    I have a requirement that my customized pricing procedure for PO should also be the same for Quotation. How can I assign my customized pricing procedure for Quotations. Please suggest if there is any solution for this?