Welcome, Guest. Please login or register.

ShoutBox!

 

Skhilled

Yesterday at 21:09:09
I've upgraded the server...more resources. ;)
 

Ken

Yesterday at 20:57:10
Now that you mention it...  :D
 

Skhilled

Yesterday at 20:47:19
...and, you should notice that the site is much faster.  :o
 

Ken

Yesterday at 20:31:37
Hey Steve.
 

Skhilled

Yesterday at 17:56:10
Re-read the message below...
 

Skhilled

2024-03-31, 15:22:06
Oh yeah, you need to upgrade the site first...
 

Ken

2024-03-30, 09:54:54
Whoops! I forgot that the SMF install here on OFF is out of date!  :'(
 

Ken

2024-03-30, 09:44:48
 Conga-Rats Steve!  :thumbup:
Me gonna install it here just for the fun of it!  :)
 

Skhilled

2024-03-29, 22:15:23
Released!  :D
 

Skhilled

2024-03-24, 09:52:09
It may be released as early as today...if we all agree on it. ;)

Recent Topics

TP Articles


Search in titles
Search in article texts

Author Topic: How To Make Things Change Colors Upon Hovering  (Read 3746 times)

0 Members and 1 Guest are viewing this topic.

Offline Skhilled (OP)

  • Administrator
  • *
  • Posts: 8990
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
How To Make Things Change Colors Upon Hovering
« on: August 17, 2019, 09:07:02 AM »
I've found a way to do this in the SMF 2.1 RC2 version but will work in any modern version of SMF.

I found this by accident working on a new theme that uses the ".bg.even/.bg.odd" code in index.css. There's code for alternating colors like in a topic, in the admin, etc. For instance, open any topic with more than one post in it on this forum. You'll notice that the posts alternate between two colors. That part uses the ".bg.even/.bg.odd" code or ".windowbg/.windowbg2" (mostly for SMF 2.0.15).

You can see it in action here on the help, calendar, and member pages:

https://skhilled.com/rc2/index.php?theme=14

What you'll need to do is create a "hover" for the code in question so it changes it to another when you put your mouse over it. ;) The following is code from 2.1 RC2:

Code: [Select]
/* Here comes the glory... */
.windowbg:nth-of-type(even), .bg.even {
background: #1f1f1f;
}
.windowbg:nth-of-type(odd), .bg.odd {
background: #282828;
}

Change it to this:

Code: [Select]
/* Here comes the glory... */
.windowbg:nth-of-type(even), .bg.even {
background: #1f1f1f;
}
.windowbg:nth-of-type(even):hover, .bg.even {
background: #000;
}
.windowbg:nth-of-type(odd), .bg.odd {
background: #282828;
}
.windowbg:nth-of-type(odd):hover, .bg.odd {
background: #000;
}

Just change the background of the following code to whatever you want the hover color to be:

Code: [Select]
background: #000;

Offline Ken

  • Vietnam Era Veteran
  • Administrator
  • *
  • Posts: 11667
  • Gender: Male
  • View Gallery
Re: How To Make Things Change Colors Upon Hovering
« Reply #1 on: August 17, 2019, 11:47:22 AM »
Neat looking trick.  :thumbup:
"Not all who wander are lost."-Tolkien
Yesterday When I was Young.

Offline Skhilled (OP)

  • Administrator
  • *
  • Posts: 8990
  • Gender: Male
  • All of my passwords are protected by amnesia...
  • View Gallery
    • Buildz Hosting
Re: How To Make Things Change Colors Upon Hovering
« Reply #2 on: August 17, 2019, 12:24:20 PM »
Next I plan on trying to make the boards on the home page do the same.  :wink: