Copy link to clipboard
Copied
I have called three times trying to get some answers. But no HELP!!.Even after connecting to my Mac Computer. I have a simple problem, how do I copy a complete table row and paste it into another row on the same table. The agent cannot seem to be able to help. Can anyone in Adobe, Dreamweaver department have any answers and help.
Please don’t send me another self-help “How the copy and Paste” link.
Copy link to clipboard
Copied
Adobe Support Agents are for account, billing & activation issues. They do not teach people to use the software. In fact most have probably never used the software in production.
If you want to copy content from one location to another, use keyboard shortcut Ctrl + C to copy, Ctrl + V to paste.
Open table in Code View.
Copy desired <tr> ..... </tr> tag.
Move to your insertion point and paste.
That said, tables are not for layouts. They are for tabular data like spreadsheets and charts. Is that what you're building?
Copy link to clipboard
Copied
Thanks for your help. I appreciate the tips in copying and pasting. With that said, how can I insert a new row in this table? Once that's done then I can copy and paste the contents into the new row.
Copy link to clipboard
Copied
By pasting the <tr> tag into the insertion point, you are creating a new table row. If you need to insert another table row, repeat or manually type <tr>....</tr> tags.
<table>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
</table>
Copy link to clipboard
Copied
To complete what @Nancy OShea said, I don't think there is a direct shortcut for this kind of manipulation, but it's a quick action, for this, two methods :
switch to Code mode
switch to Creation mode
Does this help you?
Copy link to clipboard
Copied
1. Verify you have the Document Toolbar open under Window > Toolbar > Document (should be checked) and select Design View from the Document Toolbar.
2. Click and drag from the first cell of your table row through the cells you want to copy. A black border will appear around the selected cells.
3. Hit Ctrl + C or Edit > Copy
4. Click and drag through the rows you want to paste into/over. They will highlight with a black border.
5. Hit Ctrl + V or Edit > Paste. Keep in mind, the number of cells being pasted over must match the number of cells you copied or you will get an error about the contents of the clipboard not matching.
If you are in Live View, table cells won't highlight when using the above method. The Live View Editor's method is a bit different and, well, clunky...
1. Select the table, so a blue tab and outline appear around it.
2. Click the small 3 bar menu icon in the blue tab to activate table editing. The table cells should all receive a thick black border.
3. From there you can highlight the cells the same way as Design (though the highlight will now be blue), but they will paste in addition to the existing cells, rather than over them.
4. Highlight and delete the ones you wanted to paste over.