recent active topics does not scroll

Download and support for PhpBB3 Top Stats Mod
Locked
Tr0tL
BBCoder I
BBCoder I
Posts: 2
Joined: 31 Oct 2011, 15:59
BBCodes: 5

recent active topics does not scroll

Post by Tr0tL »

i am really glad to see this mod (nv_recent_topics sux :D)
its a great idea und very useful
but it seems that i have a problem

there is no scrolling at all :(

i´ve read some other posts but nothing really helped
but it think its a bug in my overall_header, so here it is
can someone please take a look at it?

Code: Select all

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
<head>

<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="content-language" content="{S_USER_LANG}" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="resource-type" content="document" />
<meta name="distribution" content="global" />
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<!-- IF S_IN_GEOMAP -->
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<!-- ENDIF -->
{META}

<!-- IF S_IN_GEOMAP -->
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<!-- ENDIF -->

<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>
<!-- IF S_ENABLE_FEEDS -->
<!-- IF S_ENABLE_FEEDS_OVERALL --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_NEWS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_NEWS}" href="{U_FEED}?mode=news" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_FORUMS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_ALL_FORUMS}" href="{U_FEED}?mode=forums" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_TOPICS --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_NEW}" href="{U_FEED}?mode=topics" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_TOPICS_ACTIVE --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_ACTIVE}" href="{U_FEED}?mode=topics_active" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_FORUM and S_FORUM_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FORUM} - {FORUM_NAME}" href="{U_FEED}?f={S_FORUM_ID}" /><!-- ENDIF -->
	<!-- IF S_ENABLE_FEEDS_TOPIC and S_TOPIC_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_TOPIC} - {TOPIC_TITLE}" href="{U_FEED}?f={S_FORUM_ID}&t={S_TOPIC_ID}" /><!-- ENDIF -->
<!-- ENDIF -->
<!--
	phpBB style name: prosilver
	Based on style:   prosilver (this is the default phpBB3 style)
	Original author:  Tom Beddard ( http://www.subBlue.com/ )
	Modified by:      
	
	NOTE: This page was generated by phpBB, the free open-source bulletin board package.
	      The phpBB Group is not responsible for the content of this page and forum. For more information
	      about phpBB please visit http://www.phpbb.com
-->

<script type="text/javascript">
// <![CDATA[
	var jump_page = '{LA_JUMP_PAGE}:';
	var on_page = '{ON_PAGE}';
	var per_page = '{PER_PAGE}';
	var base_url = '{A_BASE_URL}';
	var style_cookie = 'phpBBstyle';
	var style_cookie_settings = '{A_COOKIE_SETTINGS}';
	var onload_functions = new Array();
	var onunload_functions = new Array();

	<!-- IF S_USER_PM_POPUP -->
		if ({S_NEW_PM})
		{
			var url = '{UA_POPUP_PM}';
			window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');
		}
	<!-- ENDIF -->

	/**
	* Find a member
	*/
	function find_username(url)
	{
		popup(url, 760, 570, '_usersearch');
		return false;
	}

	/**
	* New function for handling multiple calls to window.onload and window.unload by pentapenguin
	*/
	window.onload = function()
	{
		for (var i = 0; i < onload_functions.length; i++)
		{
			eval(onload_functions[i]);
		}
	}

	window.onunload = function()
	{
		for (var i = 0; i < onunload_functions.length; i++)
		{
			eval(onunload_functions[i]);
		}
	}

// ]]>
</script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>

<script type="text/javascript" src="{ROOT_PATH}script/jquery-1.7.min.js"></script>
<script type="text/javascript" src="{ROOT_PATH}script/jquery.cookie.2.2.0.js"></script>

    <script type="text/javascript">
    // <![CDATA[
    $(document).ready(function() {
       var id = [];
       var cookie = {
          get: false,
          name:'{COOKIE_NAME}_cb_{SCRIPT_NAME}{FORUM_ID}',
          value: []
       };
       
       cookie.get = $.cookie(cookie.name);
       if (cookie.get) {cookie.value = cookie.get.split(',');}
       
       $("[id^='colbox-switch-']").each(function()   {
          id.push($(this).attr("id").replace('colbox-switch-',''));
       });

       for (var i = 0; i < id.length; i++) {
          if ($.inArray(id[i],cookie.value) !== -1) {
             $('#colbox-switch-' + id[i]).addClass('cb_collapsed').text('[+]');
             $('#colbox-content-' + id[i]).hide();
          } else {
             $('#colbox-switch-' + id[i]).addClass('cb_expanded').text('[-]');
          }

          $('#colbox-switch-' + id[i]).click(function() {
             var thisid = $(this).attr("id").replace('colbox-switch-','');

             if ($(this).attr('class') == 'cb_collapsed') {
                $(this).removeClass('cb_collapsed').addClass('cb_expanded').text('[-]');
                $("#colbox-content-" + thisid).slideDown(200);
             } else {
                $(this).removeClass('cb_expanded').addClass('cb_collapsed').text('[+]');
                $("#colbox-content-" + thisid).slideUp(200);
             }
          });
       }
       
       $(window).unload(function() {
          var c = [];
          
          $('[id^="colbox-switch-"]').each(function() {
             if ($(this).hasClass('cb_collapsed')) {   c.push($(this).attr("id").replace('colbox-switch-','')); }
          });
          
          if (c.length) {$.cookie(cookie.name,c,{expires: 365});}
          else {$.cookie(cookie.name,null);}
       });
    });
    // ]]>
    </script>


<!-- IF S_TS_JSSCROLL and not S_TS_TICKER -->
<script src="{ROOT_PATH}script/jquery.totemticker.min.js" type="text/javascript"></script>
<script type="text/javascript">
// <![CDATA[
$(document).ready(function() {
	$('#vertical-ticker').totemticker({
				row_height	:	'41px',
				max_items   :   3,
				speed       :   {JSSCROLL_SPEED},
				interval    :   {JSSCROLL_INTERVAL},
				<!-- IF TS_JSSCROLL_NAVIGATION -->
				next		:	'#ticker-next',
				previous	:	'#ticker-previous',
				stop		:	'#stop',
				start		:	'#start',
				<!-- ENDIF -->
				mousestop	:	true,
				direction	:	'<!-- IF TS_JSSCROLL_DIRECTION -->down<!-- ELSE -->up<!-- ENDIF -->'
	});
});
// ]]>
</script>
<!-- ELSEIF S_TS_TICKER and not S_TS_JSSCROLL -->
<script src="{ROOT_PATH}script/jquery.newsticker.js" type="text/javascript"></script>
<script type="text/javascript">
// <![CDATA[
$(document).ready(function() {
	$("#news").newsTicker();
});
// ]]>
</script>
<!-- ENDIF -->


<!-- IF S_NEW_DL_POPUP --> 
<script language="Javascript" type="text/javascript"> 
// <![CDATA[ 
	window.open('{U_NEW_DOWNLOAD_POPUP}', '_blank', 'HEIGHT=225,resizable=yes,WIDTH=400'); 
// ]] > 
</script> 
<!-- ENDIF -->


<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />

<link href="{T_THEME_PATH}/normal.css" rel="stylesheet" type="text/css" title="A" />
<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" />
<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" />

<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
	<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- ENDIF -->

<!-- IF S_MPSS_ALLOW_USER and S_MPSS -->

	<!-- IF S_MPSS_USER -->
		<link href="{T_THEME_PATH}/mpss.css" rel="stylesheet" type="text/css" media="screen, projection" />
	<!-- ENDIF -->

<!-- ELSEIF S_MPSS -->
	<link href="{T_THEME_PATH}/mpss.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- ENDIF -->



<!--[if lt IE 7]>
<script defer type="text/javascript" src="{T_TEMPLATE_PATH}/menufix.js"></script>
<![endif]-->

<!-- IF S_MCHAT_ENABLE and (S_MCHAT_ON_INDEX or U_MCHAT) --> 
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> 
<script type="text/javascript" src="{ROOT_PATH}mchat/jquery_cookie_mini.js"></script> 
<!-- ENDIF -->




</head>

<body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">

<!-- Borders 1/4 -->
    <div class="outside">
    <div class="top-right"></div>
    <div class="inside">
    <div class="notopgap">
<!-- Borders 2/4 -->


<div class="buttonsbg" align="center">
<object id="fm_menu_gamerslounge_menu" width="660px" height="32px" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
  codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0">
<param name="movie" value="gamerslounge_menu.swf" /><param name="quality" value="high" />
<param name="bgcolor" value="#000000" /><param name="wmode" value="transparent" />
<param name="scale" value="noscale" /><param name="salign" value="LT" /><param name="menu" value="false" />
<embed type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer"
  width="660px" height="32px" bgcolor="#000000" wmode="transparent" src="gamerslounge_menu.swf"
  quality="high" scale="noscale" menu="false" salign="LT" />
</object>  
</div>



<div id="wrap">
	<a id="top" name="top" accesskey="t"></a>
	
			<div class="inner">


	
	           <br>
         	<div id="page-header">
		

          <div style="float: {S_CONTENT_FLOW_BEGIN}; width: 100%;">
  			
			<div id="site-description">
				
			</div>


		


    </div>
			<span class="corners-bottom" style="height:0px;"></span></div>
		</div>


		<div class="navbar">
			<div class="inner"><span class="corners-top"><span></span></span>

<!-- U35-Headder //-->

<table width="1035px" cellspacing="0" cellpadding="2" border="0">
<tbody>    
<tr nowrap="nowrap">
<td align="left" width="250px"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>&#8249;</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --><!-- BEGIN dl_nav --> <strong>&#8249;</strong> <a href="{dl_nav.U_DOWNLOAD}">{dl_nav.L_DOWNLOAD}</a><!-- END dl_nav -->
</td>
<td align="center" >
<font color="#FFFFFF"><b><script language="javascript" type="text/javascript">
        <!--
         date = new Date();
         hour = date.getHours();
         if(hour>=18)   document.write('Guten Abend,');
         else if(hour>=13) document.write('Guten Tag,');
         else if(hour>=11) document.write('Mahlzeit,');
         else if(hour>=5) document.write('Moin Moin,');
         else if(hour>=1) document.write('Immer noch wach,');
                 else if(hour>=2) document.write('Immer noch am zocken,');
                 else if(hour>=3) document.write('Ab ins Bett,');
                 else if(hour>=0) document.write('N&auml;chtle,');
            //-->
       </script> <!-- IF not S_USER_LOGGED_IN --> Gast<!-- ELSE --><a href="{U_VIEW_PROFILE}"><span style="color: #{S_USER_COLOR}; font-weight: bold;">{S_USERNAME}</span></a><!-- ENDIF --></font>

</td>
<td align="right" width="250px"><a href="#" onclick="fontsizeup(); return false;" onkeypress="return fontsizeup(event);" class="fontsize" title="{L_CHANGE_FONT_SIZE}">{L_CHANGE_FONT_SIZE}</a></a>
</td>
</tr>    
</tbody>
</table> 

<!-- U35-Headder //-->

			<span class="corners-bottom"><span></span></span></div>
		</div>

	<a name="start_here"></a>
	<div id="page-body">
	
			 <!-- IF S_NEW_BUG --> 
		<div id="message" class="rules">
			<div class="inner"><span class="corners-top"><span></span></span>
				<strong>{L_INFORMATION}:</strong> <a href="{U_BUGTRACKER}">{L_BUG_MESSAGE}</a>
			<span class="corners-bottom"><span></span></span></div>
		</div>
		<!-- ENDIF -->

<!-- IF S_NEW_DL_MESSAGE --> 
	<div id="message" class="rules"> 
		<div class="inner"><span class="corners-top"><span></span></span> 
			{NEW_DOWNLOAD_MESSAGE} 
		<span class="corners-bottom"><span></span></span></div> 
	</div> 
<!-- ENDIF -->

		
		 <!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) --> 
		<div id="information" class="rules">
			<div class="inner"><span class="corners-top"><span></span></span>
				<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
			<span class="corners-bottom"><span></span></span></div>
		</div>
		<!-- ENDIF -->

link to my page where u can see the problem live:
http://www.u35clan.de/
User avatar
Stoker
Site Admin
Site Admin
Posts: 3536
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

recent active topics does not scroll

Post by Stoker »

Delete this line: <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
and refresh the template.
Board rules! No PM support
Tr0tL
BBCoder I
BBCoder I
Posts: 2
Joined: 31 Oct 2011, 15:59
BBCodes: 5

recent active topics does not scroll

Post by Tr0tL »

yeah baby
have many thx
it works
User avatar
martin123456
BBCoder VI
BBCoder VI
Posts: 765
Joined: 25 Jul 2011, 13:29
BBCodes: 34
Favourite MOD: Ban button
Location: Down south!
Contact:

recent active topics does not scroll

Post by martin123456 »

And from now on any mods that you install that put any jquery in the overall header file remove the jquery you only need 1

2 is greedy

3 is just :?

and 4 or more puts you in the dunce corner
Locked