473,624 Members | 2,254 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

horizontal row div menu

Hi,
I'm working on a horizontal row menu, to use like folder tabs. Does
anyone know what the CSS style "cursor" is supposed to produce? Any working
samples? I put it in the code, but can't see anything resolve.
http://www.w3schools.com/css/pr_class_cursor.asp

It's probably staring right at me, but can someone tell me why hover isn't
working in IE, but does in Mozilla?
http://wholives.com/temp/tabs.htm
me
Jul 21 '05 #1
15 9166
On Sat, 19 Feb 2005 22:03:02 -0600 theo wrote:
Hi,
I'm working on a horizontal row menu, to use like folder tabs. Does
anyone know what the CSS style "cursor" is supposed to produce? Any
working
samples? I put it in the code, but can't see anything resolve.
http://www.w3schools.com/css/pr_class_cursor.asp It's probably staring right at me, but can someone tell me why hover
isn't
working in IE, but does in Mozilla?
http://wholives.com/temp/tabs.htm
me

onmouseover="st yle='cursor:han d;'"

This would change the cursor arrow to a hand when the mouse is over the
item.
Used in some cases to show that there is a link when it is not an underlined
link.
Jul 21 '05 #2
On Sat, 19 Feb 2005 22:03:02 -0600, theo <th**@nospam.co m> wrote:
I'm working on a horizontal row menu, to use like folder tabs. Does
anyone know what the CSS style "cursor" is supposed to produce?


If the horizontal menu is created with ordinary text links, like it should be,
that the cursor will adapt to normal link behaviour. And that is what is good
for your visitors, since they know exactly what to expect with a cursor behaving
like that.

--
,-- --<--@ -- PretLetters: 'woest wyf', met vele interesses: ----------.
| weblog | http://home.wanadoo.nl/b.de.zoete/_private/weblog.html |
| webontwerp | http://home.wanadoo.nl/b.de.zoete/html/webontwerp.html |
|zweefvliegen | http://home.wanadoo.nl/b.de.zoete/html/vliegen.html |
`-------------------------------------------------- --<--@ ------------'
Jul 21 '05 #3
On Sun, 20 Feb 2005 02:56:48 -0600, Richard <An*******@127. 001> wrote:
On Sat, 19 Feb 2005 22:03:02 -0600 theo wrote:
Hi,
I'm working on a horizontal row menu, to use like folder tabs. Does
anyone know what the CSS style "cursor" is supposed to produce? Any
working
samples? I put it in the code, but can't see anything resolve.
http://www.w3schools.com/css/pr_class_cursor.asp
It's probably staring right at me, but can someone tell me why hover
isn't
working in IE, but does in Mozilla?
http://wholives.com/temp/tabs.htm
me


onmouseover="st yle='cursor:han d;'"


That is javascript, you dumbass. OP asks for CSS style.
This would change the cursor arrow to a hand when the mouse is over the
item.


If you need a javascript to produce that behaviour, you did something very
stupid to start with in the markup of your page.
But then again, it's RtS talking here.

To OP: ignore all that Richard ever writes or has written. Google for RtS in any
of the web authoring groups to find out why. He has no relevant knowledge on the
subject and continues to advise people in here with the most stupid thoughts and
ideas ever seen in these groups.
--
,-- --<--@ -- PretLetters: 'woest wyf', met vele interesses: ----------.
| weblog | http://home.wanadoo.nl/b.de.zoete/_private/weblog.html |
| webontwerp | http://home.wanadoo.nl/b.de.zoete/html/webontwerp.html |
|zweefvliegen | http://home.wanadoo.nl/b.de.zoete/html/vliegen.html |
`-------------------------------------------------- --<--@ ------------'
Jul 21 '05 #4
On 20 Feb 2005 10:32:55 +0100, Barbara de Zoete <b_********@hot mail.com> wrote:
On Sat, 19 Feb 2005 22:03:02 -0600, theo <th**@nospam.co m> wrote:
I'm working on a horizontal row menu, to use like folder tabs. Does
anyone know what the CSS style "cursor" is supposed to produce?


If the horizontal menu is created with ordinary text links, like it should be,
that the cursor will adapt to normal link behaviour. And that is what is good
for your visitors, since they know exactly what to expect with a cursor
behaving like that.

http://wholives.com/temp/tabs.htm


Forgot to mention: (I can see you started out with my example menu :-) ) You
forgot to put

a {
display:block;
width:100%; }

in there somewhere (for the links in your menu). If you add that, your visitor
can click on any part of the 'tab' and get linked through. Probably this is what
you needed in the first place, so forget what I said before (and _do_ ignore all
that RtS writes).
--
,-- --<--@ -- PretLetters: 'woest wyf', met vele interesses: ----------.
| weblog | http://home.wanadoo.nl/b.de.zoete/_private/weblog.html |
| webontwerp | http://home.wanadoo.nl/b.de.zoete/html/webontwerp.html |
|zweefvliegen | http://home.wanadoo.nl/b.de.zoete/html/vliegen.html |
`-------------------------------------------------- --<--@ ------------'
Jul 21 '05 #5
Barbara de Zoete wrote:
onmouseover="st yle='cursor:han d;'"
That is javascript, you dumbass. OP asks for CSS style.


.... and hand isn't a valid value for that property anyway. That effect is
achieved with "pointer".

--
David Dorward <http://blog.dorward.me .uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Jul 21 '05 #6
On Sun, 20 Feb 2005 10:54:38 +0000, David Dorward <do*****@yahoo. com> wrote:
Barbara de Zoete wrote:
onmouseover="st yle='cursor:han d;'"

That is javascript, you dumbass. OP asks for CSS style.


... and hand isn't a valid value for that property anyway. That effect is
achieved with "pointer".


You're right. Although IE doesn't seem to support 'pointer' as a value for the
cursor property. But then again, we all know what the resemblance between RtS
and IE (for Win) is :-D









They're both crap and therefore either hated or not taken seriously, depending
on how long ago one found out.

--
,-- --<--@ -- PretLetters: 'woest wyf', met vele interesses: ----------.
| weblog | http://home.wanadoo.nl/b.de.zoete/_private/weblog.html |
| webontwerp | http://home.wanadoo.nl/b.de.zoete/html/webontwerp.html |
|zweefvliegen | http://home.wanadoo.nl/b.de.zoete/html/vliegen.html |
`-------------------------------------------------- --<--@ ------------'
Jul 21 '05 #7
Barbara de Zoete wrote:
Richard (RtS) wrote:

<snip>
onmouseover="st yle='cursor:han d;'"

That is javascript, you dumbass. OP asks for CSS style.

<snip>

It isn't even javascript, just another nonsense product of a deranged
mind. The javascript would be more like:-

onmouseover="th is.style.cursor = 'hand';"

- and still not do anything useful on a non-IE browser.

Richard.
Jul 21 '05 #8
On Sun, 20 Feb 2005 12:02:19 -0000, Richard Cornford
<Ri*****@litote s.demon.co.uk> wrote:
Barbara de Zoete wrote:
Richard (RtS) wrote:

<snip>
onmouseover="st yle='cursor:han d;'"

That is javascript, you dumbass. OP asks for CSS style.

<snip>

It isn't even javascript,


Just shows how much I know on _that_ subject :-D I have no knowledge on
javascript at all.

Thanks for completing the comment I was trying to make.

--
,-- --<--@ -- PretLetters: 'woest wyf', met vele interesses: ----------.
| weblog | http://home.wanadoo.nl/b.de.zoete/_private/weblog.html |
| webontwerp | http://home.wanadoo.nl/b.de.zoete/html/webontwerp.html |
|zweefvliegen | http://home.wanadoo.nl/b.de.zoete/html/vliegen.html |
`-------------------------------------------------- --<--@ ------------'
Jul 21 '05 #9

Forgot to mention: (I can see you started out with my example menu :-) ) You forgot to put
a {display:block; width:100%}in there somewhere (for the links in your menu). If you add that, your visitor can click on any part of the 'tab' and get linked through. Probably this

is what > you needed in the first place, so forget what I said before (and
_do_ ignore all > that RtS writes).
http://wholives.com/temp/tabs.htm>


Barb and all,
I added the display/width styles, as you suggested.
Yes, your example from last week or so. Thanks, so much,
as I'd never seen it done as a list. IE refuses the hover styling
for the <li> items, so I added a class to <a> to make it work
and keep it seperate (not yet uploaded).

I'm considering trying to learn dynamic web pages, scripting, but see
that it's quite a task. Any opionions on where to start. ASP, PHP,
JavaScript, Perl, Python. Just want to learn the basics, fairly simple
introduction. My domain hosting doesn't allow cgi, etc., so also
wondering what suggestions might be out there. They do allow js.
Just want to start with basic assembly, grab this and grab that, to render
a few pages.

thanks..
me
Jul 21 '05 #10

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

Similar topics

13
5002
by: elad | last post by:
Hi The Menu doesn't work properly when I have 2 frame and the Menu popup frame=document target frame, when I choose item in the menu the doc opened and the menu get stuck. Here is the code I'm using: FrameSet ------------------------------------------------------- <html>
2
5312
by: Ansgar Hein | last post by:
I have been playing around with several different versions for a horizontal menu, but I haven't been able to build a horizontal navigation based on the vertical one featured on www.alistapart.com in the article "taming lists". However I have managed to build a horizontal navigation but it has a slight hitch in Mozilla and Opera, but it's fine in Internet Explorer. It is a strange occurrance of a 4 - 5 Pixel bar in grey (which is the...
5
4551
by: Chris Beall | last post by:
Objective: Using an HTML list, create a horizontal nav menu with these characteristics: - All menu items have the same width at all times. - When the window width is reduced, the menu items stack, rather than creating a horizontal scroll bar. - The menu cluster is always centered on the window. See http://pages.prodigy.net/chris_beall/Demo/centered%20horizontal%20list.html
2
9312
by: Sergio E. | last post by:
Hi group, I write this post with the following question: How can I to build an absolutely horizontal menu?, This is because I can't find how can I configure the menu component of asp.net 2.0 in vs2005. I need somthing like this: the root menu in this form
1
6611
by: camphor | last post by:
hi, I have a single column webpage with a horizontal dropdown menu and am trying to make the nav bar fit across the page, the column is 800px, it looks ok in dreamweaver 8 but when I test it in firefox, the nav bar which is a horizontal blue stripe with the links written inside it doesn't stretch the whole 800px, also how would you align the words in the submenu to the main menu, currently the submenus are centered html <body> <div...
5
5559
Haitashi
by: Haitashi | last post by:
Hello everyone: I have a CFMenu with the type set to horizontal. I'd like to have the sub-menu items open vertically. Is that possible? Here is my code. I want the Portals sub-menu (Portal A, Portal B, Portal C) to open vertically instead of horizontally. <cfmenu name="topMenu" type="horizontal" fontsize="14" fontcolor="##7A7251" font="'Lucida Sans', verdana, sans-serif;" selectedFontColor="##F58026" ...
19
3672
by: Jim | last post by:
Hi, I have two questions/problems pertaining to CSS horizontal dropdown menus and am hoping that someone here can help me out. (1) I'm having a problem centering the menu. I picked up the code for this from a tutorial but that menu was flush-left justified. Not what I want. Subsequent searches on google on how to center yielded a
0
8170
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8675
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8334
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7158
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6108
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5561
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4078
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
1784
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1482
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.