Original topic here : http://myskins.org/Thread-Forum-Hover-Ef...Index-Page
Hello friends,
I wanted to share this little tip with you guys , which makes a hover effect on the index page for the forums under categories.
Its just a few lines of code and it is pretty basic tut.
1.CSS
You need to add a class to your global.css at bottom , lets call :
.hovi {
background:#fff;
}
Now you need to add the hover code to the class :
.hovi:hover {
background: #EEE;
}
So this combines as
Add the code to global.css
2. HTML
Now you need to add the class to html link.
So navigate to templates of your theme > forumbit_depth2_forum template.
Find in the first line of the template
<tr>
add the class you define the hover to it , and it goes like
<tr class="hovi">
Now save the templates and enjoy the hover effect of forums on index.
Thank you
regards
Hello friends,
I wanted to share this little tip with you guys , which makes a hover effect on the index page for the forums under categories.
Its just a few lines of code and it is pretty basic tut.
1.CSS
You need to add a class to your global.css at bottom , lets call :
.hovi {
background:#fff;
}
Now you need to add the hover code to the class :
.hovi:hover {
background: #EEE;
}
So this combines as
Code:
.hovi {
background:#fff;
}
.hovi:hover {
background: #EEE;
}
Add the code to global.css
2. HTML
Now you need to add the class to html link.
So navigate to templates of your theme > forumbit_depth2_forum template.
Find in the first line of the template
<tr>
add the class you define the hover to it , and it goes like
<tr class="hovi">
Now save the templates and enjoy the hover effect of forums on index.
Thank you
regards