Click to See Complete Forum and Search --> : What is the best way?


mragz28
01-15-2009, 11:15 AM
I am a designer with HTML knowledge and have designed a website for a local bar. I have no problem writing the html but they have asked to be able to update the daily specials. What is the easiest way to have the client update (text only) this on a daily basis? Please and Thank You.

Charles
01-15-2009, 01:31 PM
Mark up the page properly with all presentation in external stylesheets. And then teach then how to use a text editor to update the HTML on the server. It shouldn't take that long to tell them to put "<li></li>" around each menu item.

optimus203
01-20-2009, 07:00 PM
You can also provide direction within your code by using html comments wrapped in <!-- -->

This is what I usually do for clients who want to update their own sites.

TheTeenScripter
01-20-2009, 07:06 PM
If you really wanted to go the extra step you could install content management systems for your clients. Some are already made, but then again they are usually a little hard to integrate.

Fang
01-21-2009, 07:42 AM
This is simple for clients: http://www.cushycms.com/

Charles
01-21-2009, 07:55 AM
However, in this the 21st Century everybody ought to know HTML to be considered minimally literate. I wouldn't say that they need to know CSS and all the other ancilliary stuff but HTML has become essential to communication. And it takes like 20 minutes to master.

optimus203
01-21-2009, 09:23 PM
Another gem. Thanks Fang! This is very useful.