Go Back   Trackpads Community > General Discussions > Computer and Technology > Web Design

Web Design Forums and discussions on webdesign

Web Design

Reply
 
LinkBack Thread Tools
Old 06-22-2005, 08:00   #1 (permalink)
paul
Civilians

 
Default DHTML menus

Hi guys!
Its that re-design time of year again! I'm converting a tables based site
to
a Pure CSS site, and tweaking the whole look of the site. I've got a
couple
of questions:

1) I want to use DHTML for the main navigation. Would my code still
validate
if I have this big chunk of DHTML in it? Also, How gracefully would a
DHTML
menu degrade if someone was surfing with Java switched off? And finally,
how
would a screen reader, or other visual aid, cope with a DHTML menu, would
I
still have to present a plain text <a href> type menu?

2) Could anyone recomend a decent, easy to install forum system
(php/Mysql)?
I would want it easy to customise so I can blend it seamlessly with the
rest
of my site. I know I should code my own, but i'm being lazy to learn PHP
from scratch! Hey, I'm learning CSS, one step at a time eh?

Many thanks in advance

Paul

www.dunmowkarate.com



--
I am using the free version of SPAMfighter for private users.
It has removed 3180 spam emails to date.
Paying users do not have this message in their emails.
Try www.SPAMfighter.com for free now!


 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Trackpads Information
Click to Visit
Old 06-22-2005, 08:00   #2 (permalink)
Norman L. DeForest
Civilians

 
Default Re: DHTML menus


On Wed, 22 Jun 2005, paul wrote:

> Hi guys!
> Its that re-design time of year again! I'm converting a tables based site
> to
> a Pure CSS site, and tweaking the whole look of the site. I've got a
> couple
> of questions:
>
> 1) I want to use DHTML for the main navigation. Would my code still
> validate
> if I have this big chunk of DHTML in it? Also, How gracefully would a
> DHTML
> menu degrade if someone was surfing with Java switched off? And finally,
> how
> would a screen reader, or other visual aid, cope with a DHTML menu, would
> I
> still have to present a plain text <a href> type menu?


A link to a plain text version (or a "<noscript>...</noscript>" section
would be useful for those not using JavaScript (those with it switched off
or those using browsers such as Lynx that don't support JavaScript).

If you have an Nvidia video card, try finding a driver for it at
http://www.nvidia.com/content/drivers/drivers.asp
using only the Lynx browser.

>
> 2) Could anyone recomend a decent, easy to install forum system
> (php/Mysql)?
> I would want it easy to customise so I can blend it seamlessly with the
> rest
> of my site. I know I should code my own, but i'm being lazy to learn PHP
> from scratch! Hey, I'm learning CSS, one step at a time eh?


Sorry, I can't help there.

--
Can you Change: *alchemy to alchemy* (* == Unicorn)
mindworks mindworks
in 103 moves? Try http://www.chebucto.ns.ca/~af380/AMPuzzle.html
(Requires a browser supporting the W3C DOM such as Firefox or IE ver 6)

 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-22-2005, 12:00   #3 (permalink)
Matt Probert
Civilians

 
Default Re: DHTML menus

Once upon a time, far far away "paul"
<paulioNOSPAM@wattio.freeserve.co.uk> muttered

>Its that re-design time of year again! I'm converting a tables based site
>to
>a Pure CSS site, and tweaking the whole look of the site.


The two are not connected. CSS suggests appearance, tables present
tabular information.

> How gracefully would a DHTML
>menu degrade if someone was surfing with Java switched off?


Try it with Lynx and see for yourself!

Matt


 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-22-2005, 16:00   #4 (permalink)
Alfred Molon
Civilians

 
Default Re: DHTML menus

In article <d9bbo3$gh$1@newsg2.svr.pol.co.uk>, paul says...
> Hi guys!
> Its that re-design time of year again! I'm converting a tables based site
> to
> a Pure CSS site, and tweaking the whole look of the site. I've got a
> couple
> of questions:
>
> 1) I want to use DHTML for the main navigation. Would my code still
> validate
> if I have this big chunk of DHTML in it? Also, How gracefully would a
> DHTML
> menu degrade if someone was surfing with Java switched off? And finally,
> how
> would a screen reader, or other visual aid, cope with a DHTML menu, would
> I
> still have to present a plain text <a href> type menu?


My site uses CSS and a DHTML drop down menu (top left). You can still
navigate without the drop down menu.
--

Alfred Molon

http://www.molon.de/Galleries.htm - Photos from China, Myanmar, Brunei,
Malaysia, Thailand, Laos, Cambodia, Nepal, Egypt, Germany, Austria,
Prague, Budapest, Singapore and Portugal
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-23-2005, 00:00   #5 (permalink)
-db-
Civilians

 
Default Re: DHTML menus

paul wrote:
> Hi guys!
> Its that re-design time of year again! I'm converting a tables based site
> to
> a Pure CSS site, and tweaking the whole look of the site. I've got a
> couple
> of questions:
>
> 1) I want to use DHTML for the main navigation. Would my code still
> validate
> if I have this big chunk of DHTML in it? Also, How gracefully would a
> DHTML
> menu degrade if someone was surfing with Java switched off? And finally,
> how
> would a screen reader, or other visual aid, cope with a DHTML menu, would
> I
> still have to present a plain text <a href> type menu?


You might want to take a look at Suckerfish dropdown menus.
(http://www.alistapart.com/articles/dropdowns) It uses list tags to do
the navigation. The lists are styled using CSS into dropdowns. There
are several beautiful things about suckerfish. It degrades nicely into
lists if your browser doesn't support CSS. It works without javascript
if your browser is standards compliant like FireFox. There is an
acompanying slice of javascript to beat recalcitrants like Internet
Explorer into submission. Unfortunately, Safari 1.0 objects to it. The
other beauty of suckerfish is that it makes editing dropdown navbars a
breeze to edit.

Alistapart has some great articles on CSS based design. Also worth
checking out is http://www.htmldog.com/ and http://csszengarden.com/ to
see some stuff that can be done with CSS
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-23-2005, 12:00   #6 (permalink)
Justin Koivisto
Civilians

 
Default Re: DHTML menus

-db- wrote:

> paul wrote:
>
>> Hi guys!
>> Its that re-design time of year again! I'm converting a tables based site
>> to
>> a Pure CSS site, and tweaking the whole look of the site. I've got a
>> couple
>> of questions:
>>
>> 1) I want to use DHTML for the main navigation. Would my code still
>> validate
>> if I have this big chunk of DHTML in it? Also, How gracefully would a
>> DHTML
>> menu degrade if someone was surfing with Java switched off? And finally,
>> how
>> would a screen reader, or other visual aid, cope with a DHTML menu, would
>> I
>> still have to present a plain text <a href> type menu?

>
>
> You might want to take a look at Suckerfish dropdown menus.
> (http://www.alistapart.com/articles/dropdowns) It uses list tags to do
> the navigation. The lists are styled using CSS into dropdowns. There
> are several beautiful things about suckerfish. It degrades nicely into
> lists if your browser doesn't support CSS. It works without javascript
> if your browser is standards compliant like FireFox. There is an
> acompanying slice of javascript to beat recalcitrants like Internet
> Explorer into submission. Unfortunately, Safari 1.0 objects to it. The
> other beauty of suckerfish is that it makes editing dropdown navbars a
> breeze to edit.


Hmm.. Safari 1.0(.3) doesn't seem to mind this menu:
http://koivi.com/css-menus/

--
Justin Koivisto, ZCE - justin@koivi.com
http://koivi.com
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-24-2005, 00:00   #7 (permalink)
-db-
Civilians

 
Default Re: DHTML menus

Justin Koivisto wrote:
[chop]
>
> Hmm.. Safari 1.0(.3) doesn't seem to mind this menu:
> http://koivi.com/css-menus/
>


thank you kindly for that.
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Amazing DHTML site SpaceGirl Web Design 8 05-11-2005 12:00
DHTML menu... Ryan Web Design 8 03-02-2005 08:00
DHTML scripts The Magician Web Design 18 10-30-2004 04:00
DHTML vs Java Alfred Molon Web Design 3 06-19-2004 13:35
Help - Excel VBA Menus RJSUK Microsoft Applications 5 06-15-2004 23:57


Community Information
Options
Quick Options
Trackpads Non-Commercial Ad
Copyright Information Click to Visit
Time
Server Time
All times are GMT -4. The time now is 19:57.
Copyright
Copyright Information
The header is based off of work by Vipixel.com and modified by this site. Trackpads and the Trackpads Logo are both Registered Trademarks of Jason Edwards and cannot be used without prior written permission.  The only exception is as a link back to this site. Trackpads is a private website run by a small legion of volunteers, 3 dogs, 12.5 cats and an army of small, super smart, bio-engineered mice with pointy hats and tutu's. Search Engine Friendly URLs by vBSEO 3.2.0 RC7
Archive Links
Archive Links
Page generated in 0.94959 seconds with 19 queries