Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Forumhome Mouseover Effect Details »»
Forumhome Mouseover Effect
Version: 1.0.0, by Logikos Logikos is offline
Developer Last Online: Sep 2023 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.5.3 Rating:
Released: 07-20-2005 Last Update: 01-30-2006 Installs: 369
Template Edits
 
No support by the author.

What this does:
This will create a hover effect when your members place there mouse over your forums. See screen shot for an example. This will also create the same effect in your threadbit area!

3 Small Template changes. Should take no less then 2 min.

Update Notes:
v1.2 Updated threadlist area.
v1.0 Released.

!CLICK INSTALL!

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #92  
Old 01-15-2006, 04:59 AM
QueenBee's Avatar
QueenBee QueenBee is offline
 
Join Date: Jan 2006
Location: On Cloud 9
Posts: 197
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok it worked, but is it supposed to stay colored?? when u mouse over them it stays that color. is that right???

thanks 4 your help
Reply With Quote
  #93  
Old 01-15-2006, 05:01 AM
Club3G Club3G is offline
 
Join Date: Aug 2004
Location: Orlando, Fl
Posts: 300
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by QueenBee
ok it worked, but is it supposed to stay colored?? when u mouse over them it stays that color. is that right???

thanks 4 your help
When you move the mouse off of it, it's not changing back? When the mouse is over the forum, it should change to the new color, but when you move it off, it should go back to the default look.

Can you post the whole code snippet?
Reply With Quote
  #94  
Old 01-15-2006, 05:05 AM
QueenBee's Avatar
QueenBee QueenBee is offline
 
Join Date: Jan 2006
Location: On Cloud 9
Posts: 197
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no its not changing. :ermm: which code did u want?? the one from the templates or the one from the main css?
Reply With Quote
  #95  
Old 01-15-2006, 05:05 AM
Club3G Club3G is offline
 
Join Date: Aug 2004
Location: Orlando, Fl
Posts: 300
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If it helps, QueenBee, here are my templates. I took out the cursor change.

This is in my threadbit template to make the thread view rollover, as seen here:

http://www.sevenstring.org/forum/forumdisplay.php?f=23

Code:
<td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]" onmouseover="this.className='forumrollover';" onmouseout="this.className='alt1';">
For the forumhome rollovers, as seen here:

http://www.sevenstring.org/forum/index.php

Edit the forumhome_forumbit_level1_post template:
Code:
<!-- Rollover Mod -->
        <td class="alt1Active" colspan="2" align="$stylevar[left]" id="f$forum[forumid]" onmouseover="this.className='forumrollover';" onmouseout="this.className='alt1active';">
<!-- /Rollover -->
And the forumhome_forumbit_level2_post template.
Code:
<!-- Rollover Mod -->
  <td class="alt1Active" align="$stylevar[left]" id="f$forum[forumid]" onmouseover="this.className='forumrollover';" onmouseout="this.className='alt1Active';">
<!-- /Rollover -->
Reply With Quote
  #96  
Old 01-15-2006, 05:08 AM
Club3G Club3G is offline
 
Join Date: Aug 2004
Location: Orlando, Fl
Posts: 300
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by QueenBee
no its not changing. :ermm: which code did u want?? the one from the templates or the one from the main css?
Aah, you're missing a bit o' code, I'm looking at your website right now.

Your source is:

Code:
<td class="alt1Active" colspan="2" align="left" id="f14" style="cursor:hand;" onmouseover="this.className='forumrollover';"onclick="window.location.href='forumdisplay.php?
You need to add this:

Code:
onmouseout="this.className='alt1Active';"
Mouseout is when your mouse isn't over it anymore.
Reply With Quote
  #97  
Old 01-15-2006, 05:08 AM
QueenBee's Avatar
QueenBee QueenBee is offline
 
Join Date: Jan 2006
Location: On Cloud 9
Posts: 197
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

im lost, u want me to put those codes in?

is "threadbit edit:" the main css code?
Reply With Quote
  #98  
Old 01-15-2006, 05:09 AM
Club3G Club3G is offline
 
Join Date: Aug 2004
Location: Orlando, Fl
Posts: 300
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry, I'll clarify for ya. Editin' my post now.
Reply With Quote
  #99  
Old 01-15-2006, 05:13 AM
Club3G Club3G is offline
 
Join Date: Aug 2004
Location: Orlando, Fl
Posts: 300
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by QueenBee
im lost, u want me to put those codes in?


is "threadbit edit:" the main css code?
Awrighty, edited. Your main CSS code is fine, the problem you have right now is in these two templates:

forumhome_forumbit_level1_post
forumhome_forumbit_level2_post

You just need to add in:

Code:
onmouseout="this.className='alt1Active';"
Right after this:

Code:
onmouseover="this.className='forumrollover';"
Make sure there's a space between the quotation marks and the next letter.
Reply With Quote
  #100  
Old 01-15-2006, 05:17 AM
QueenBee's Avatar
QueenBee QueenBee is offline
 
Join Date: Jan 2006
Location: On Cloud 9
Posts: 197
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you r fabulous!!




[IMG][/IMG]
Reply With Quote
  #101  
Old 01-15-2006, 05:18 AM
QueenBee's Avatar
QueenBee QueenBee is offline
 
Join Date: Jan 2006
Location: On Cloud 9
Posts: 197
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

do u think its too dark??
Reply With Quote
Reply


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

Forum Jump


All times are GMT. The time now is 12:36 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05658 seconds
  • Memory Usage 2,311KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (7)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete