Copy link to clipboard
Copied
Hello there. In current website I am working on trying to make a simple Table in which I can then place pictures and then stats/info/etc. So I went on YouTube and read through Adobe to learn on how to do this. Everyone explained about clicking on "Make a table"...adjust to the size...move it around and I should be happy (see video). However, for some reason I am unable to do any of this. It seems that I am very restricted in my Dreamweaver abilities as in my video my Table's simple 1 box script plops on and then I have to work it from there. And then I have no ability to move it around. Even when I try to edit it through Modify -> Table -> (nothing is lit up).
Please watch the video below and share your thoughts. I will reply to them as soon as possible. Thanks.
Hi.
I watched the video. First off you don't have to copy and paste the code or write any code at all like the video shows.
All you have to do is Insert> Table which it sounds like you have done. Enter in the columns and rows that you want (although you can always easily add more rows and/or columns or delete them). Then to be able to edit the table you have to be in Design View.
So under View Menu go View>View Mode>Design or change the center drop down to "Design". (see attached)
Then you will be a
...Copy link to clipboard
Copied
I'm sorry but I do not have 10 minutes to spare to watch the video.
What I can say is for you to go to Design view instead of Live view and you will be able to insert and adjust the table as per video.
If that does not work, then try Insert > Table or Ctrl+Alt+T
Copy link to clipboard
Copied
Hi.
I watched the video. First off you don't have to copy and paste the code or write any code at all like the video shows.
All you have to do is Insert> Table which it sounds like you have done. Enter in the columns and rows that you want (although you can always easily add more rows and/or columns or delete them). Then to be able to edit the table you have to be in Design View.
So under View Menu go View>View Mode>Design or change the center drop down to "Design". (see attached)
Then you will be able to click on the table and stretch it, select it and center it, or add more columns and rows by right-clicking in the table and then selecting Table>Insert Rows or Columns... or you can click an drag to select a few cells and then right click and select Table>Merge Cells.
Copy link to clipboard
Copied
A better question is why are you even using tables for layout? Tables are for tabular data only like charts and spreadsheets. Modern websites are built with CSS layouts.
Start your project with one of the pre-built CSS starter templates in DW. No tables required.
Go to File > New... see screenshots.
After saving your file, DW will create Assets folders for you which can be seen in your Files Panel.
Nancy
Copy link to clipboard
Copied
Hi Nancy. This isn't for an entire layout. This is just a simply 3 x 2 table WITHIN a layout page...it's for a simple profile page.
Copy link to clipboard
Copied
I still say Tables are not the right choice for responsive web design. They invariably fail to work well in mobile phones. You might want to consider using CSS styled Definition Lists . https://jsfiddle.net/NancyO/SxGNV/
Pseudo-Tables with Definition Lists - JSFiddle
Nancy
Copy link to clipboard
Copied
I'd honestly would considered that option had I not finished it already. I looked at it from a mobile phone size and you're right, it would needed to be done that way to see the entire page. For future sites, If I have to add a table, I will go about the "pre-setting" of layouts. I learned about that in the past through Bootstrap 3 Tutorial pages and liked the idea a lot...but will admit I simply forgot about it. I need to get back to those and re-learn next time I get assigned another project
John
Copy link to clipboard
Copied
you can wrap the table in a <div> tag so you have more control, I guess after you learn a bit about bootstrap... and you can try setting your table width to 100% of the browser if you want full width or 80% of the browser etc. so it scales as you resize the browser. Not perfect, especially since it will also depend a bit on the cells and if they have widths, and of course whats in them.
Nancy is right... but a table can be made in 20 seconds... the templates would still need CSS styles to be created and wouldn't be as easy to scale. So sounds like the poor man method can work fine for now.
cheers!
mark