Getting a non navigational image to not have the hand cursor

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
schnipps
Beginner
Beginner
Posts: 3
Joined: Thu Jan 26, 2006 12:59 pm

Getting a non navigational image to not have the hand cursor

Post by schnipps »

Hi
Creating a site and the nav is centred on the page. All is fine the only problem is the right hand side image "buttonsright" doesnt need to link anywhere as its just an image. However I need it in the milonic element as if i take it out the other buttons just all move into the centre of the page. So at the moment I have this

with(milonic=new menuname("Main Menu")){
style=AllImagesStyle;
top="offset=93";
left=0;
screenposition="top;center"
alwaysvisible=1;
orientation="horizontal";
aI("showmenu=companyprofile;image=../global/images/compprofile.gif;");
aI("showmenu=news;image=../global/images/news.gif;");
aI("showmenu=marketspaces;image=../global/images/marketspaces.gif;");
aI("showmenu=infocentre;image=../global/images/infocentre.gif;");
aI("image=../global/images/buttonsright.gif;");
}

The attribute in bold above i just want to remain where it is but i DONT want the link/finger cursor to appear when hovering over it. Is there any way to disable this for this image?
schnipps
Beginner
Beginner
Posts: 3
Joined: Thu Jan 26, 2006 12:59 pm

Post by schnipps »

Trying this but its stops the whole image working


aI("pointer=arrow; image=../global/images/buttonsright.gif;" );
vikenk
Mega Advanced
Mega Advanced
Posts: 297
Joined: Tue Nov 29, 2005 7:38 pm

Post by vikenk »

Try "pointer=default"

Viken K.
schnipps
Beginner
Beginner
Posts: 3
Joined: Thu Jan 26, 2006 12:59 pm

Post by schnipps »

vikenk wrote:Try "pointer=default"

Viken K.
Thanks that works spot on, the "arrow" worked in IE but not in Firefox, that works in both.
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Post by Ruth »

Hi,

Try changing the type of aI string it is to header.

Code: Select all

aI("image=../global/images/buttonsright.gif;type=header;"); 
vikenk
Mega Advanced
Mega Advanced
Posts: 297
Joined: Tue Nov 29, 2005 7:38 pm

Post by vikenk »

Ruth wrote:Hi,

Try changing the type of aI string it is to header.

Code: Select all

aI("image=../global/images/buttonsright.gif;type=header;"); 
Now that's great to know! I had to tinker around with "pointer=default" in order to get that effect.

Way to go, Ruth.
Post Reply