Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
  #1  
Old 11-18-2005, 07:59 PM
Madmp3zz Madmp3zz is offline
 
Join Date: Aug 2005
Posts: 103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Adding A Java Mouseover.

I want to add this code to the top of my cmps homepage.
Where would I add it?
I created a file called buttons.php with the below code to make sure it works and it does.

Just need to know where to add it.

TIA

PHP Code:
<script type="text/javascript">
<!--
var 
SESSIONURL "";
var 
IMGDIR_MISC "images/misc";
// -->
</script>

<
script type="text/javascript" src="clientscript/vbulletin_global.js"></script>
<
script type="text/javascript" src="clientscript/vbulletin_menu.js"></script>

<
script language="JavaScript" type="text/JavaScript">
<!--

//image1 = new Image();
//image1.src = "nav_home_on.gif";
//image2 = new Image();
//image2.src = "nav_forum_on.gif";
//image3 = new Image();
//image3.src = "nav_stats_on.gif";
//image4 = new Image();
//image4.src = "nav_chat_on.gif";

function MM_swapImgRestore()

    var 
ixdocument.MM_sr;
    for (
0&& a.length && (a[i]) && x.oSrci++) x.src x.oSrc;
}

function 
MM_findObj(nd)
{
    var 
pix;
    if (!
dd=document;
    if ((
n.indexOf("?")) > && parent.frames.length)
    {
        
parent.frames[n.substring(1)].document;
        
n.substring(0p);
    }
    if (!(
d[n]) && d.alld.all[n];
    for (
0; !&& d.forms.lengthi++) d.forms[i][n];
    for (
0; !&& d.layers && d.layers.lengthi++) MM_findObj(nd.layers[i].document);
    if (!
&& d.getElementByIdd.getElementById(n);
    
    return 
x;
}

function 
MM_swapImage()
{
    var 
i0xMM_swapImage.arguments;
    
document.MM_sr = new Array;
    for (
0< (a.length-2); += 3)
           if ((
MM_findObj(a[i])) != null)
           {
               
document.MM_sr[j++] = x;
               if(!
x.oSrcx.oSrc x.src;
               
x.src a[2];
           }
}
//-->
</script>
<
style type="text/css">
.
login {
    
FONT-SIZE12px;
    
FONT-FAMILYVerdana,Arial,Helvetica,sans-serif;
    
COLOR#910000;
    
BACKGROUND-COLOR#CBCBCB
}
</
style>
</
head>
<
body>

 

</
table>
    <
a href="portal.php?" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('home','','images/steelred/nav_home_on.gif',1)"><img src="images/steelred/nav_home_off.gif" alt="Home" name="home" width="107" height="27" border="0" /></a><img src="images/steelred/nav_home_on.gif" style="display: none;" />
    <
a href="index.php?" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('forums','','images/steelred/nav_forum_on.gif',1)"><img src="images/steelred/nav_forum_off.gif" alt="Forums" name="forums" width="107" height="27" border="0" /></a><img src="images/steelred/nav_forum_on.gif" style="display: none;" />
    <
a href="portal.php" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('stats','','images/steelred/nav_stats_on.gif',1)"><img src="images/steelred/nav_stats_off.gif" alt="Stats" name="stats" width="107" height="27" border="0" /></a>
    <
a href="chat/flashchat.php?" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('chat','','images/steelred/nav_chat_on.gif',1)"><img src="images/steelred/nav_chat_off.gif" alt="Chat" name="chat" width="107" height="27" border="0" /></a><img src="images/steelred/nav_chat_on.gif" style="display: none;" />

<
div style="width: 95%; height: 15px; border: none; overflow: hidden; vertical-align: bottom; background: #910000 url(images/steelred/top_splashbottom.gif);" align="left">
</
div>
    <
tr>
        <
td>

<!-- 
content table --> 
Reply With Quote
  #2  
Old 11-19-2005, 02:59 AM
G-Force 199's Avatar
G-Force 199 G-Force 199 is offline
 
Join Date: Nov 2005
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

2 ways to do this

1. Copy the php file to the modules folder.
Login to your Admin CP >>> vBa CMPS >>> Add Module >>> [PHP File].

Module Title : Your Module Name
Column : Your Module in Column
File to Include : The new file you've copied it to the modules folder.
Clean File Output : Yes

Hit the button Save.

2. Login to your Admin CP >>> vBa CMPS >>> Add Module >>> [Template].

Module Title : Your Module Name
Column : Your Module in Column
Display Order : Your Module Display Order
Template to Include : Some thing you want like button, navigation, bar etc.
Style : Choose the first option.
Template Content : Paste your code here.

Hit the button Save.

You really need to change the code you posted here.

Please note that vBadvanced is in no way affiliated with Jelsoft Enterprises Ltd, nor will Jelsoft be able to provide any support for vBadvanced products.
Reply With Quote
  #3  
Old 11-19-2005, 08:50 PM
Madmp3zz Madmp3zz is offline
 
Join Date: Aug 2005
Posts: 103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How's this for the code edit? Is it better?
I added the module to the CENTER Column listed as 1.

It shows up as I want it to, but it moves EVERYTHING below it and EVERTHING in the RIGHT Column to the bottom and looks like a footer.

No matter where I add it, EVERYTHING after it moves to the bottom as a footer.

Any Ideas?

PHP Code:
 </script
<
script language="JavaScript" type="text/JavaScript"
<!-- 

//image1 = new Image(); 
//image1.src = "nav_home_on.gif"; 
//image2 = new Image(); 
//image2.src = "nav_forum_on.gif"; 
//image3 = new Image(); 
//image3.src = "nav_stats_on.gif"; 
//image4 = new Image(); 
//image4.src = "nav_chat_on.gif"; 

function MM_swapImgRestore() 
{  
    var 
ixdocument.MM_sr
    for (
0&& a.length && (a[i]) && x.oSrci++) x.src x.oSrc


function 
MM_findObj(nd

    var 
pix
    if (!
dd=document
    if ((
n.indexOf("?")) > && parent.frames.length
    { 
        
parent.frames[n.substring(1)].document
        
n.substring(0p); 
    } 
    if (!(
d[n]) && d.alld.all[n]; 
    for (
0; !&& d.forms.lengthi++) d.forms[i][n]; 
    for (
0; !&& d.layers && d.layers.lengthi++) MM_findObj(nd.layers[i].document); 
    if (!
&& d.getElementByIdd.getElementById(n); 
     
    return 
x


function 
MM_swapImage() 

    var 
i0xMM_swapImage.arguments
    
document.MM_sr = new Array; 
    for (
0< (a.length-2); += 3
           if ((
MM_findObj(a[i])) != null
           { 
               
document.MM_sr[j++] = x
               if(!
x.oSrcx.oSrc x.src
               
x.src a[2]; 
           } 

//--> 
</script

</
table
    <
a href="cmps_index.php?" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('home','','images/steelred/nav_home_on.gif',1)"><img src="images/steelred/nav_home_off.gif" alt="Home" name="home" width="107" height="27" border="0" /></a><img src="images/steelred/nav_home_on.gif" style="display: none;" /> 
    <
a href="index.php?" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('forums','','images/steelred/nav_forum_on.gif',1)"><img src="images/steelred/nav_forum_off.gif" alt="Forums" name="forums" width="107" height="27" border="0" /></a><img src="images/steelred/nav_forum_on.gif" style="display: none;" /> 
    <
a href="http://mysite.com/league/index.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('stats','','images/steelred/nav_stats_on.gif',1)"><img src="images/steelred/nav_stats_off.gif" alt="Stats" name="stats" width="107" height="27" border="0" /></a
    <
a href="chat/flashchat.php?" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('chat','','images/steelred/nav_chat_on.gif',1)"><img src="images/steelred/nav_chat_off.gif" alt="Chat" name="chat" width="107" height="27" border="0" /></a><img src="images/steelred/nav_chat_on.gif" style="display: none;" /> 
    <
tr
        <
td

<!-- 
content table --> 
Reply With Quote
Reply

Thread Tools
Display Modes

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 03:57 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.03770 seconds
  • Memory Usage 2,271KB
  • Queries Executed 13 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (3)post_thanks_box
  • (3)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)post_thanks_postbit_info
  • (3)postbit
  • (3)postbit_onlinestatus
  • (3)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_postinfo_query
  • fetch_postinfo
  • 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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete