Web-design packages with easy to edit tables

15 views
Skip to first unread message

Noel Cunningham

unread,
Nov 7, 2015, 11:17:25 AM11/7/15
to cesi...@googlegroups.com
Using the Dreamweaver program for web-design, I can create a table and then edit it (add rows etc) pretty much like I would in Microsoft Word.

However Dreamweaver is now ridiculously expensive (and there seems to be a steep learning curve with the new edition) but most other web-design programs don't seem to have the same functionality when it comes to adding tables. With Weebly you can insert a table but not edit it easily.

Anybody know any programs that do allow tables to be created and edited easily?

I haven't used Wordpress for web-design, just for blog posts, but I see plug-ins are available if I choose to go down this option.
Just thought I would throw it out here first before committing either way.

Thanks,
Noel

Damien Quinn

unread,
Nov 7, 2015, 11:51:56 AM11/7/15
to cesi...@googlegroups.com

Hi Noel, you can just design your table the way you want it to look in Dreamweaver, and then copy the code for the completed table and paste it into Wordpress, Weebly or whatever other web design programme you want to use. It’s a workaround that may work for you.

 

Regards, Damien

--
--
You received this message because you are subscribed to the Google
Groups "CESI-list" group.
To post to this group, send email to cesi...@googlegroups.com
To unsubscribe from this group, send email to cesi-list+...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/cesi-list?hl=en-GB where all messages are archived and are publically available to non members of the list. Messages may also show up in search engines etc.
Visit the web site www.cesi.ie
Attempts to use the list for commercial purposes may result removal from the list.
---
You received this message because you are subscribed to the Google Groups "CESI-list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cesi-list+...@googlegroups.com.
To post to this group, send email to cesi...@googlegroups.com.
Visit this group at http://groups.google.com/group/cesi-list.
For more options, visit https://groups.google.com/d/optout.

Hassan Dabbagh

unread,
Nov 7, 2015, 11:55:15 AM11/7/15
to cesi...@googlegroups.com
+1 Damien 


Hassan Dabbagh
087 9044716

Noel Cunningham

unread,
Nov 7, 2015, 11:57:45 AM11/7/15
to cesi...@googlegroups.com
The problem is that the version of dreamweaver that I'm used to using is on an old laptop and is not compatible with windows 10.
If I do copy the code from there and paste into weebly or an equivalent I'm guessing I still won't be able to easily add a new row (I'd like to have an option for 'insert new row' rather than have to do it code).

John Hegarty

unread,
Nov 7, 2015, 12:10:37 PM11/7/15
to cesi-list
How about doing the table in a google document and then embedding the document in the wordpress blog. Any editing/adjustments you make to the Google document automatically appear on the web page. Might not be the prettiest solution but pretty functional.

jh

Willie McTiernan

unread,
Nov 7, 2015, 2:45:08 PM11/7/15
to cesi...@googlegroups.com
Kompozer is free, good for tables

Seaghan Moriarty (Digilogue)

unread,
Nov 7, 2015, 6:51:21 PM11/7/15
to cesi...@googlegroups.com

Hi Noel,

 

The problem with tables is that they are not supposed to be used – apart from displaying tabulated data. Many of us, myself included, used them for layout in Dreamweaver – so I know where you’re coming from. When your page with table is viewed on an ipad or smartphone or re-sized window, tables can ruin otherwise well organised / laid-out pages.

 

So, the current advice is to use CSS to create grids/tables – so that there is some degree of ‘responsiveness’. The layout will then re-flow depending on the device and size of the user.  It’s not a solution per-se, but it might help in part. Practically, take a look at this facility: http://www.csstablegenerator.com/ which should help you create tables of many optional styles and sizes which you can then paste into any editor and away you go J

 

HTH J

 

Kindest Regards,

Seaghan Moriarty.

Keith Michael Gregg

unread,
Nov 7, 2015, 10:13:19 PM11/7/15
to cesi...@googlegroups.com
+1 to what Seaghan said

Never ever ever ever EVER use tables for layout. It is really bold HTML3 Practice, which was supposed to stop with the advent of CSS. Tables are very code heavy and complex. It's much easier to layout data with CSS using floats or positioning. 


There are great tools such as HTML5 Boilerplate, Twitter Bootstrap, and Zurb foundation, which give you a code based scaffold if you don't want to build something from scratch, unless you are actually building a table for tabular data (you are physics seemingly, so this may be the case)

You may also like to look up http://html5please.com/ to see what awesome HTML5 features can be used. If your HTML/CSS is rusty, you can check out codecademy's short HTML/CSS track which teaches you the more contemporary approaches to web. 


For mac there is an app called WebCode which spits out good HTML/CSS, unlike DreamWeaver - which is a kitchen sink WYSIWYG. Using a text editor, Sublime 2 or ATOM are great. This is a list of the best ones for windows. I've seen Kompozer in action but to be honest is it much faster coding by hand.


alternatively I am attaching a rough Table layout which should be easy for you to edit. Open it in a text editor like wordpad or sublime. Open it in a browser to view changes. 




Regards,

 
Keith Michael Gregg
Designer, Teacher, Trainer
   

This email and its attachments may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author. If you are not the intended recipient of this email and its attachments, you must take no action based upon them, nor must you copy or show them to anyone. Please contact the sender if you believe you have received this email in error
table.html

CJ fanning

unread,
Nov 8, 2015, 5:21:12 AM11/8/15
to cesi...@googlegroups.com
Hi

Very useful thread!

I was going to say check out what's out there in Opensource. It can be surprising. 

I used Sublime in a workshop recently and there seemed to be lots of add on features and plug ins. It was fairly straightforward to use too 

Camilla

Sent from my iPhone
<table.html>

Keith Michael Gregg

unread,
Nov 8, 2015, 8:06:38 AM11/8/15
to cesi...@googlegroups.com

Yes camilla,  sublime is great. Aptana studio is more robust for a full stack app,  and github recently released atom, which is like sublime minus the subscribe pop up. Notepad ++ is OK but clunky as is textwrangler or bbedit on Mac. Sublime Aptana and atom all have the benefit of autocomplete for your tags. Making markup easier

Noel Cunningham

unread,
Nov 8, 2015, 11:30:58 AM11/8/15
to cesi...@googlegroups.com
Thank you to all everyone for taking the time to reply.
Think I will forward most of it on to my go-to techie student who has more time than I have to check out the various options. He can then guide me through the best option(s).

N


Reply all
Reply to author
Forward
0 new messages