How To Active Hover? Where I have to Change?

This is a discussion on "How To Active Hover? Where I have to Change?" within the Web Page Design section. This forum, and the thread "How To Active Hover? Where I have to Change? are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Oct 2nd, 2007, 17:22
New Member
Join Date: Aug 2007
Location: Bangladesh
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
How To Active Hover? Where I have to Change?

Hello friends, How are you all?

Here is my website: http://www.opengiga.com

Firstly, You should this site's CSS function: http://www.gigaom.com

Secondly, Here you see the post title's hover color and text color. When you mouse over on the "Post Tile" link then hold on red color $ text hold on White color. How I can make it or enable it for my opengiga.com site? Where I have to edit?

Thirdly, On www.gigaom.com this site's active links also do the same work (under post articles). When you mouse over on the active link it's hold on red color and text hold on White color. How I can make it or enable it for my opengiga.com site? Where I have to edit?

I have no idea about CSS. But, if anybody tell me or guide me, where I have to go and which code should be changed, I can do it.

For your kind information I am now using WordPress 2.2

Hope your understand? If any problem to understand please tell me...

Waiting for the right solution.........


Thanks
Reply With Quote

  #2 (permalink)  
Old Oct 2nd, 2007, 17:27
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How To Active Hover? Where I have to Change?

Moved to CSS forum

Check the CSS Beginner FAQ sticky.
Reply With Quote
  #3 (permalink)  
Old Oct 2nd, 2007, 17:29
alexgeek's Avatar
Technical Administrator

SuperMember
Join Date: Jul 2007
Location: Webforumz 24/7
Age: 15
Posts: 3,770
Blog Entries: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to alexgeek
Re: How To Active Hover? Where I have to Change?

you do this with the pseudo class :hover
Link:
http://www.w3schools.com/css/css_pseudo_classes.asp


for example that is the second heading (<h2>)
so the css would like like:

h2:hover {
background-color: #FF00FF;
color: #FFFFFF;
}

Obviously you'll have to change the color codes.
Last Blog Entry: 3D Chess in your browser! (Mar 14th, 2008)
Reply With Quote
  #4 (permalink)  
Old Oct 2nd, 2007, 17:48
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How To Active Hover? Where I have to Change?

The :hover pseudo only works on links in IE so ... that's a no go.

The solution is in the link supplied.
Reply With Quote
  #5 (permalink)  
Old Oct 4th, 2007, 14:01
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,761
Blog Entries: 1
Thanks: 0
Thanked 18 Times in 18 Posts
Send a message via AIM to moojoo Send a message via MSN to moojoo Send a message via Yahoo to moojoo
Re: How To Active Hover? Where I have to Change?

.htc files. A necessary evil but at least they work.
__________________
The internet is just a fad.
http://www.mevans76.com
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
  #6 (permalink)  
Old Oct 4th, 2007, 14:05
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How To Active Hover? Where I have to Change?

Not for a simple color change on :hover?
Reply With Quote
  #7 (permalink)  
Old Oct 4th, 2007, 14:06
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,761
Blog Entries: 1
Thanks: 0
Thanked 18 Times in 18 Posts
Send a message via AIM to moojoo Send a message via MSN to moojoo Send a message via Yahoo to moojoo
Re: How To Active Hover? Where I have to Change?

No, I was talking more along the lines of menu systems and other scenarios where a :hover is required on non link elements such as li:hover etc.. Ignore the man behind the inter web screenie.
__________________
The internet is just a fad.
http://www.mevans76.com
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
  #8 (permalink)  
Old Oct 4th, 2007, 14:08
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How To Active Hover? Where I have to Change?

Ah! OK ....
Reply With Quote
  #9 (permalink)  
Old Oct 5th, 2007, 04:30
New Member
Join Date: Aug 2007
Location: Bangladesh
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How To Active Hover? Where I have to Change?

Thanks for your support.

But, nobody specifically didn't tell me where I have to change?
Reply With Quote
  #10 (permalink)  
Old Oct 5th, 2007, 05:45
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,608
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Send a message via Yahoo to Monie
Re: How To Active Hover? Where I have to Change?

Quote:
Originally Posted by karinne View Post
Moved to CSS forum

Check the CSS Beginner FAQ sticky.
The link that karinne gave is the basic answer to your question.

Code: Select all
a:link {
  color: #090;
}
a:visited {
  color: #099;
}
a:hover {
  color: #900;
}
a:active {
  color: #009;
}
Throw this code somewhere in your css style, and adjust the color to your need.
Last Blog Entry: ASP Programming Tips and Technique (Oct 26th, 2007)
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 On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Change the colour of dynamic text when ACTIVE or INACTIVE ollielaroo Classic ASP 13 Jun 3rd, 2008 10:36
[SOLVED] Change div background on hover of another element Aso JavaScript Forum 10 Dec 8th, 2007 11:08
a:link, active, hover, visited.... mcdanielnc89 Web Page Design 35 Nov 8th, 2007 22:10
change colour of text, on hover. Jason3107 Web Page Design 28 Sep 27th, 2007 23:10
How do I get people active and keep them active? TheSealPortalTeam Webforumz Cafe 4 May 9th, 2007 10:17


All times are GMT. The time now is 07:10.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

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