Forum Moderators: not2easy
Do I have to make an individual html page for every item? If that's the case (which i'm hoping it isn't), then adding any new items to the list require my changing every single existing page to have the new list item...
Is there a way using CSS (or anything else, preferably not flash) that I can have different images loaded via click into the same viewing area without requiring different html pages?
I think this would also allow me to have collapsable menus that stay in the open or closed state...which i don't know how to do either...
(And if the one html page is not an option, is there a way to have one master list and have it automatically put into all the different portfolio html's?)
I hope this made sense...
Thanks for your time.
p.s. In case you can't tell...I know enough html to get me by (or to make me dangerous)...so be gentle.
[edited by: SuzyUK at 6:37 am (utc) on May 25, 2004]
[edit reason] oops No URLS see TOS #13 [webmasterworld.com] [/edit]
Simple answer is you have choices :)
If that's the case (which i'm hoping it isn't), then adding any new items to the list require my changing every single existing page to have the new list item...
If using different pages for each item you could use SSI (server side include) to include the menu on each page, (php, asp, javascript.. your method may depend on what your host supports, it very easy (1 x command) if you already use php or asp)
Is there a way using CSS (or anything else, preferably not flash) that I can have different images loaded via click into the same viewing area without requiring different html pages?
Note: CSS is not a scripting language, whereas Javascript is. Javascript is required to activate an onclick event, CSS suggests how the activated elements/divs look.
I think this would also allow me to have collapsable menus that stay in the open or closed state...which i don't know how to do either...
And if the one html page is not an option, is there a way to have one master list and have it automatically put into all the different portfolio html's?
Yes and this is possibly the easiest solution, I find it invaluable anyway :) You should possibly look into the SSI methods (mentioned above). This way you create "template" style pages for your content - leaving a "space" where the menu code should be, then in that space you put in whichever include command suits the method you've chosen and "pull in" the menu code (which is in a seperate file). If you then change the menu code page it will update across all pages it has been included into.
And further within your "templated" image (portfolio htmls) pages if you then use seperate/unique ids or classes on the body element you can achieve nifty "active" menu status effects via CSS. (that technique is described in some previous discussions..)
there's a few choices open to you and others may well have more too..
Suzy