473,387 Members | 1,510 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

cross-browser css only menus

yb
hi,

i've searched for a css-only menu (that works with javascript disabled)
and haven't found any.

are there any known solutions for this problem ... either multi-level,
or one-level ... or vertical / horizontal?

must also work in internet explorer

Thanks

Dec 18 '06 #1
11 3842
Rik
yb wrote:
hi,

i've searched for a css-only menu (that works with javascript
disabled) and haven't found any.

are there any known solutions for this problem ... either multi-level,
or one-level ... or vertical / horizontal?
Ton's and tons and tons.
Ever heard of <ul>'s? They're great for menus.
http://css.maxdesign.com.au/listamatic/

Maybe if you'de be more specific about your actual needs.
If you're looking for a pop-up/folding like list: not untill MSIE supports
the :hover on other elements then just <a href=''>.
--
Rik Wasmus
Dec 18 '06 #2
yb
Maybe if you'de be more specific about your actual needs.
If you're looking for a pop-up/folding like list: not untill MSIE supports
the :hover on other elements then just <a href=''>.
--
yep, thats what i'm looking for.

I was pretty sure this wouldn't be possible in IE, but was hoping maybe
someone had a solution i missed

Dec 19 '06 #3
Rik
yb wrote:
>Maybe if you'de be more specific about your actual needs.
If you're looking for a pop-up/folding like list: not untill MSIE
supports the :hover on other elements then just <a href=''>.
--

yep, thats what i'm looking for.

I was pretty sure this wouldn't be possible in IE, but was hoping
maybe someone had a solution i missed
It's rumoured it works on IE7, so just might have to wait it out :P
--
Rik Wasmus
Dec 20 '06 #4
In article <96***************************@news2.tudelft.nl> ,
"Rik" <lu************@hotmail.comwrote:
It's rumoured it works on IE7, so just might have to wait it out :P
You will be waiting a while, there are people still on Win 2000
etc and unable to get 7...

--
dorayme
Dec 20 '06 #5
Rik
dorayme wrote:
In article <96***************************@news2.tudelft.nl> ,
"Rik" <lu************@hotmail.comwrote:
>It's rumoured it works on IE7, so just might have to wait it out :P

You will be waiting a while, there are people still on Win 2000
etc and unable to get 7...
Yup, like me :P.

It'll be a long wait.
Allthough you might consider solving it in IE lt 7 with scripting. As long
as it will work, only not that fancy, without javascript offcourse.
--
Rik Wasmus
Dec 20 '06 #6
dorayme wrote:
"Rik" <lu************@hotmail.comwrote:
>It's rumoured it works on IE7, so just might have to wait it out :P

You will be waiting a while, there are people still on Win 2000
etc and unable to get 7...
</waves>

Win2000 is my last Microsoft OS. By the time it wears out, I'll be so
old I don't need it for Visual FoxPro any longer. VFP is the only reason
I still have it.

--
-bts
-Motorcycles defy gravity; cars just suck
Dec 20 '06 #7
Rik
Beauregard T. Shagnasty wrote:
dorayme wrote:
> "Rik" <lu************@hotmail.comwrote:
>>It's rumoured it works on IE7, so just might have to wait it out :P

You will be waiting a while, there are people still on Win 2000
etc and unable to get 7...

</waves>

Win2000 is my last Microsoft OS. By the time it wears out, I'll be so
old I don't need it for Visual FoxPro any longer. VFP is the only
reason I still have it.
Ooh, I'd like to have that luxury.
There are 2 reasons for me to keep using Windows:
- Ultraedit (allthough, Linux has some very interesting counter-parts).
- I HAVE to test in MSIE

IF it were me personally, i'd dump Windows, for now I keep W2K, and
probably will have to upgrade someday just for the browser. The agony.
--
Rik Wasmus
Dec 20 '06 #8
In article
<qw*********************@bgtnsc04-news.ops.worldnet.att.net>,
"Beauregard T. Shagnasty" <a.*********@example.invalidwrote:
dorayme wrote:
"Rik" <lu************@hotmail.comwrote:
It's rumoured it works on IE7, so just might have to wait it out :P
You will be waiting a while, there are people still on Win 2000
etc and unable to get 7...

</waves>

Win2000 is my last Microsoft OS. By the time it wears out, I'll be so
old I don't need it for Visual FoxPro any longer. VFP is the only reason
I still have it.
Had to look that one up... yes, now and then MS do put out some
useful things! I used to have fun with MS QuickBasic where you
could be really slack and still run... the PowerPC chips in Macs
spoilt the fun, there was then FutureBasic which was much
stricter.

About Win2000, that is what I have on my PC too (due to it being
given to me from a friend and it being so much better than 98 for
USB support at least... via which is mainly how I get to see my
sites on it). I think JL has it too.

--
dorayme
Dec 20 '06 #9
Scripsit Rik:
It's rumoured [:hover on non-link elements] works on IE7, so just might
have to wait it out :P
Rumoured? It actually works. This is good news, for many purposes.

But hopefully not for the purpose discussed here. There's nothing wrong with
a presentational feature that works only for 5 % or for 95 % of users, as
long as you don't expect too much from it. But basing _navigation_ (menus)
on techniques that work for part of users only is crazy, when you have the
simple and robust option of using just normal links.

By the way, the extended support to :hover in IE 7 bad news to anyone who
has used just :hover as a selector, expecting it to match hovered links
(only).

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Dec 20 '06 #10
Rik
Jukka K. Korpela wrote:
Scripsit Rik:
>It's rumoured [:hover on non-link elements] works on IE7, so just
might have to wait it out :P

Rumoured? It actually works. This is good news, for many purposes.

But hopefully not for the purpose discussed here. There's nothing
wrong with a presentational feature that works only for 5 % or for 95
% of users, as long as you don't expect too much from it. But basing
_navigation_ (menus) on techniques that work for part of users only
is crazy, when you have the simple and robust option of using just
normal links.
Agreed, 't is far better indeed.
By the way, the extended support to :hover in IE 7 bad news to anyone
who has used just :hover as a selector, expecting it to match hovered
links (only).
Hmmmz, do I smell extra easy income sorting out other peoples bad html/css?
--
Rik Wasmus
Dec 20 '06 #11
"Rik" <lu************@hotmail.comwrites:
Beauregard T. Shagnasty wrote:
>dorayme wrote:
>> "Rik" <lu************@hotmail.comwrote:

It's rumoured it works on IE7, so just might have to wait it out :P

You will be waiting a while, there are people still on Win 2000
etc and unable to get 7...

</waves>

Win2000 is my last Microsoft OS. By the time it wears out, I'll be so
old I don't need it for Visual FoxPro any longer. VFP is the only
reason I still have it.

Ooh, I'd like to have that luxury.
There are 2 reasons for me to keep using Windows:
- Ultraedit (allthough, Linux has some very interesting counter-parts).
- I HAVE to test in MSIE
Have you discovered: http://www.tatanka.com.br/ies4linux/page/Main_Page

He posted a beta version of IE7 before I was able to find a real PC
running it to test the site I was working on! IE7 support is still
experimental though and since I _have_ dumped MS Windows I can not be
absolutely sure that I am seeing what IE users see, but I have not yet
had anyone complain.

--
Ben.
Dec 22 '06 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Web Science | last post by:
Site and Features: http://www.eigensearch.com Search engine, eigenMethod, eigenvector, mathematical, manifolds, science, technical, search tools, eigenmath, Jacobian, quantum, mechanics,...
12
by: * ProteanThread * | last post by:
but depends upon the clique: ...
3
by: rollasoc | last post by:
Hi, Doing a bit of system testing on a Windows 98 laptop. (.Net 1.1 app). Did a bit of testing. Loaded a previously saved file. A gray box appeared with the text and buttons all white...
0
by: Web Science | last post by:
Site and Features: http://www.eigensearch.com Search engine, eigenMethod, eigenvector, mathematical, manifolds, science, technical, search tools, eigenmath, Jacobian, quantum, mechanics,...
4
by: David Peach | last post by:
Hello, hope somebody here can help me... I have a query that lists defects recorded in a user defined date range. That query is then used as the source for a Cross Tab query that cross-tabs count...
23
by: Jeff Rodriguez | last post by:
Here's what I want do: Have a main daemon which starts up several threads in a Boss-Queue structure. From those threads, I want them all to sit and watch a queue. Once an entry goes into the...
0
by: Web Science | last post by:
Site and Features: http://www.eigensearch.com Search engine, eigenMethod, eigenvector, mathematical, manifolds, science, technical, search tools, eigenmath, Jacobian, quantum, mechanics,...
7
by: Scott M. | last post by:
How can I disable the cross-site scripting check for one particular page of a site?
1
by: Rob Woodworth | last post by:
Hi, I'm having serious problems getting my report to work. I need to generate a timesheet report which will contain info for one employee between certain dates (one week's worth of dates). I...
6
by: ampo | last post by:
Hello. Can anyone help with cross-domain problem? I have HTML page from server1 that send xmlHTTPRequest to server2. How can I do it? Thanks.
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.