Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Design Forum > Web Design & Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Web Design & Programming Discussion of web design, and server-side & client-side scripting

Reply
 
LinkBack Thread Tools
Old 07-07-2009, 10:42 AM   #1 (permalink)
Registered User
 
Join Date: Jul 2009
Posts: 3
OS: xp


Fusion 11 Hyperlink hover color

I am trying to get the hyperlinks on our web site to change color while the cursor hovers over them. I have tried several times. I've read the user manual completely and then some. In "Style", the software shows that the changes have been made. When published, it does not work.

It seems whenever I make changes to hyperlinks or navigation there is a problem with the software. Does anyone know if this is a common problem or of a work around? Any suggestions or help would be greatly appreciated.

NetObjects Fusion 11
IE 7
XP
Rocktool is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 07-07-2009, 11:10 AM   #2 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,878
OS: Vista, various linux distros


Re: Fusion 11 Hyperlink hover color

Hey, could you post the code to the site in [code] tags? or a link to the site(this is preferable)?

Otherwise we're just guessing...

Usually though your stylesheet should looks something like:
Code:
/*Previous code includes style tag definition, etc*/
A{
  color:#000;/*Origional color*/
}

A:hover{
  color:#333;/*Hover color*/
}
Cheers,
Jamey
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 07-07-2009, 01:06 PM   #3 (permalink)
Registered User
 
Join Date: Jul 2009
Posts: 3
OS: xp


Re: Fusion 11 Hyperlink hover color

Thank you for your reply Jamey. Here is the URL:

http://www.rockfordtoolcraft.com/
Rocktool is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 07-07-2009, 03:15 PM   #4 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,878
OS: Vista, various linux distros


Re: Fusion 11 Hyperlink hover color

Alllllright... Change:
Code:
A:hover {
	color: rgb(0,51,153);
}
to
Code:
A:hover {
	color: rgb(0,51,153) !important;
}
Works a charm.

Cheers,
Jamey
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 07-07-2009, 03:15 PM   #5 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,878
OS: Vista, various linux distros


Re: Fusion 11 Hyperlink hover color

Double Post. Sorry.
__________________

Myspace

Last edited by jamiemac2005; 07-07-2009 at 03:21 PM.
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 07-08-2009, 10:32 AM   #6 (permalink)
Registered User
 
Join Date: Jul 2009
Posts: 3
OS: xp


Re: Fusion 11 Hyperlink hover color

Thanks for the help. The web site was only built using Fusion. Started with Fusion 10.0 Trial then upgraded to 11. The settings appear to be set correctly. No matter what I try, Fusion does not publish the changes that I make. This only happens with changes to links. I get no response from NetObjects Support.

Under Text properties "Format", this is what CSS editor says:

font-family: Tahoma,Verdana,Arial,Helvetica,Sans-serif;
font-size: 10pt;
color: rgb(102,51,0);
text-decoration: none ;

Under Text properties "Link", this is what CSS editor says:

font-family: Tahoma,Verdana,Arial,Helvetica,Sans-serif;
font-size: 10pt;
color: rgb(0,51,153);
font-weight: normal;
font-style: normal;
text-decoration: none ;

Under "Style" tab, the "Hover" settings are:

Tahoma, 10pt, rgb(0,51,153), text-decoration: none
Rocktool is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 07-08-2009, 02:04 PM   #7 (permalink)
Registered User
 
FredT's Avatar
 
Join Date: Nov 2007
Posts: 388
OS: Mac OS X 10.5.7 and XP SP2


Re: Fusion 11 Hyperlink hover color

Well, both the link and hover properties have the same color: rgb(0,51,153);

You need to change the rgb(0,51,153) to get the hover color to change. If you don't have a graphics program to pick a color from, Google search rgb color picker and I'm sure you'll come across tons of online utilities that will tell you the R,G,B values for the color you pick.

For example:

Under Text properties "Link", this is what CSS editor says:

font-family: Tahoma,Verdana,Arial,Helvetica,Sans-serif;
font-size: 10pt;
color: rgb(0,51,153);
font-weight: normal;
font-style: normal;
text-decoration: none ;

Under "Style" tab, the "Hover" settings are:

Tahoma, 10pt, rgb(0,0,0), text-decoration: none

to have the link turn black when you hover over it.

Last edited by FredT; 07-08-2009 at 02:08 PM.
FredT is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 07-08-2009, 03:14 PM   #8 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,878
OS: Vista, various linux distros


Re: Fusion 11 Hyperlink hover color

In the fully published site the properties are correct but coded poorly(fusion obviously being the problem)... Open the file in notepad, find the part i quoted, change it. It will work (i tested it live with a bookmarklet that i use quite a lot).

Cheers,
Jamey
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


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 Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 10:12 AM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85