Scroll not work - Yes i read Note about jquery

Download and support for PhpBB3 Top Stats Mod
Locked
uzidesign
BBCoder II
BBCoder II
Posts: 13
Joined: 14 Aug 2010, 13:42

Scroll not work - Yes i read Note about jquery

Post by uzidesign »

Hi all,

I'm trying to fix that myself for few days now, Don't know where is the problem.
I have already "jquery" in "overall_header" so i remove the the second line:

Code: Select all

<script src="{ROOT_PATH}script/jquery-1.7.min.js" type="text/javascript"></script>
I hope someone will be able to help me.. here is my "overall_header". I have dominion base style.

Code: Select all

<!-- INCLUDE styleswitcher.html -->
<!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}
<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 -->
	<link rel="alternate" type="application/atom+xml" title="{L_FEED} - {SITENAME}" href="{U_FEED}" />
	<!-- 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_ALL_TOPICS}" href="{U_FEED}?mode=topics" /><!-- 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 -->

<!-- INCLUDE ../../../rokbb3.php -->
<!-- INCLUDE dominion.php -->

<!--
	phpBB style name: dominion
	Based on style:   prosilver (this is the default phpBB3 style)
	Original author:  Tom Beddard ( http://www.subBlue.com/ )
	Modified by: RocketTheme, LLC (C) Copyright. All rights reserved.     
	
	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]);
		}
	}
function doCollapseExpand(id,img){
   var b = document.getElementById(id);
      if (b.style.display=='none'){
      b.style.display='';
   document.images[img].src='{ROOT_PATH}images/infominus.png';
} else {
      b.style.display='none';
   document.images[img].src='{ROOT_PATH}images/infoplus.png';
} return false; }
// ]]>
</script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>
<!-- IF (S_TSRAT_ENABLE and S_TS_JSSCROLL) or (S_TSRAT_ENABLE and S_TS_TICKER) -->

<!-- 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 -->
<!-- ENDIF -->
<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
<link href="{T_THEME_PATH}/gantry_css/gantry.css" rel="stylesheet" type="text/css" media="screen, projection" />
<link href="{T_THEME_PATH}/gantry_css/grid-12.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- IF IE_VERSION eq '6'-->
<link href="{T_THEME_PATH}/gantry_css/gantry-ie6.css" rel="stylesheet" type="text/css" media="screen, projection"  />
<!-- ENDIF -->
<link href="{T_THEME_PATH}/gantry_css/joomla.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- IF IE_VERSION eq '6'-->
<link href="{T_THEME_PATH}/gantry_css/joomla-ie6.css" rel="stylesheet" type="text/css" media="screen, projection"  />
<!-- ENDIF -->
<!-- IF IE_VERSION eq '7'-->
<link href="{T_THEME_PATH}/gantry_css/joomla-ie7.css" rel="stylesheet" type="text/css" media="screen, projection" />	
<!-- ENDIF -->
<link href="{T_THEME_PATH}/joomla.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- IF IE_VERSION eq '6'-->
<link href="{T_THEME_PATH}/joomla-ie6.css" rel="stylesheet" type="text/css" media="screen, projection"  />
<!-- ENDIF -->
<!-- IF IE_VERSION eq '6'-->
<link href="{T_THEME_PATH}/suckerfish.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- ENDIF -->
<link href="{T_THEME_PATH}/<!-- IF DOMIN_STYLE -->{DOMIN_STYLE}<!-- ELSE -->style1<!-- ENDIF -->.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- IF IE_VERSION eq '6'-->
<link href="{T_THEME_PATH}/<!-- IF DOMIN_STYLE -->{DOMIN_STYLE}<!-- ELSE -->style1<!-- ENDIF -->-ie6.css" rel="stylesheet" type="text/css" />
<!-- ENDIF -->
<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- IF IE_VERSION eq '6'-->
<link href="{T_THEME_PATH}/template-ie6.css" rel="stylesheet" type="text/css" media="screen, projection"  />
<!-- ENDIF -->
<!-- IF IE_VERSION eq '7'-->
<link href="{T_THEME_PATH}/template-ie7.css" rel="stylesheet" type="text/css" media="screen, projection"  />
<!-- ENDIF -->
<!-- IF IE_VERSION eq '8'-->
<link href="{T_THEME_PATH}/template-ie8.css" rel="stylesheet" type="text/css" media="screen, projection"  />	
<!-- ENDIF -->
<!-- IF IE_VERSION neq '6' -->
<link href="{T_THEME_PATH}/fusionmenu.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- ENDIF -->
<!-- IF DOMIN_STYLE eq 'style1' or DOMIN_STYLE eq 'style3' or DOMIN_STYLE eq 'style5' -->
<link href="{T_THEME_PATH}/dark.css" rel="stylesheet" type="text/css" />
<!-- ELSE -->
<link href="{T_THEME_PATH}/light.css" rel="stylesheet" type="text/css" />
<!-- ENDIF -->
<!-- IF not DOMIN_STYLE -->
<link href="{T_THEME_PATH}/dark.css" rel="stylesheet" type="text/css" />
<!-- ENDIF -->
<link href="{T_THEME_PATH}/small.css" rel="alternate stylesheet" type="text/css" title="A--" />
<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++" />
<style type="text/css">
#rt-main-surround ul.menu li.active > a, #rt-main-surround ul.menu li.active > .separator, #rt-main-surround ul.menu li.active > .item, .rt-article-title span, #rt-main-surround h2.title span {color:<!-- IF DOMIN_LINK_COLOR -->{DOMIN_LINK_COLOR}<!-- ELSE -->#cc0000<!-- ENDIF -->;}
body a, #rt-main-surround ul.menu a:hover, #rt-main-surround ul.menu .separator:hover, #rt-main-surround ul.menu .item:hover, #rt-top .titlecolor h2.title span, #rt-main-surround h2.title span  {color:<!-- IF DOMIN_LINK_COLOR -->{DOMIN_LINK_COLOR}<!-- ELSE -->#cc0000<!-- ENDIF -->;}
<!-- IF S_CONTENT_DIRECTION neq 'rtl' -->
<!-- IF AVATAR_POSITION == left -->
	.postprofile {float: left; border: 0px; margin-left: -6px;}
	.postbody {float: right;}
	ul.profile-icons {margin-right: 40px;}
	.online {background-position: 17% -1%;}
<!-- ENDIF -->	
<!-- IF DOMIN_MENUPOSITION == left or DOMIN_MENUPOSITION == right -->
#postingbox .autowidth {width: 90% !important; }
	#postingbox .column2 { width: 75%; margin-top:-65px; position: relative;}
	#postingbox .column1 { width: 60%;position: relative; z-index:10000;}
	#postingbox fieldset.fields1 dd { margin-left: 15em;}
	#colour_palette dd { margin-left: 5em !important;}
	<!-- PHP -->if (rok_isIe(7)) {print("#postingbox .column2 { width: 75%; margin-top:0px; position: relative; margin-left: -300px;}");}<!-- ENDPHP -->
	<!-- PHP -->if (rok_isIe(6)) {print("#postingbox .column2 { width: 75%; margin-top:0px; position: relative; margin-left: -300px;} #message-box #message {width: 98%;} #cp-main {width:80%;}");}<!-- ENDPHP -->
<!-- ENDIF -->
<!-- ENDIF -->
<!-- IF SHOW_DOMIN_PATHWAY -->
	#rt-feature .rt-block {margin-bottom: -10px !important; }
<!-- ENDIF -->
  </style>
  
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/mootools-release-1.11.js"></script>
<!-- IF IE_VERSION eq '6'-->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/gantry-ie6menu.js"></script>
<!-- ENDIF -->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/rokfonts.js"></script>
<!-- IF ENABLE_DOMIN_FONTSPANS -->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/gantry-buildspans.js"></script>
<!-- ENDIF -->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/gantry-totop.js"></script>
<!-- IF ENABLE_DOMIN_FONTSPANS -->
<script type="text/javascript" src="{ROOT_PATH}mobiquo/tapatalkdetect.js"></script>
<script type="text/javascript">
			window.addEvent('domready', function() {
				var modules = ['rt-block'];
				var header = ['h3','h2','h1'];
				GantryBuildSpans(modules, header);
			});
</script>
<!-- ENDIF -->
<!-- IF IE_VERSION eq '6'-->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/belated-png.js"></script>
<script type="text/javascript">
			window.addEvent('domready', function() {
				var pngClasses = ['.png', '#rt-logo', '.stuff', 'h2.title', '.rt-article-title', '#rt-showcase .roknewspager-div', '#rt-showcase ul.roknewspager li', '#breadcrumbs-home', '.feature-arrow-l', '.feature-arrow-r', '.rating-bar div', '.rokstories-tip', '#rt-accessibility a.small .button', '#rt-accessibility a.large .button','span.corners-top','span.corners-top span','span.corners-bottom','span.corners-bottom span','.panel span.corners-top', '.panel span.corners-bottom'];
				pngClasses.each(function(fixMePlease) {
					DD_belatedPNG.fix(fixMePlease);
				});
			});
</script>
<!-- IF DOMIN_MENUPOSITION neq 'full' -->
<style type="text/css">
.rt-container .rt-grid-8 {width:600px;}
<!-- ENDIF -->
</style>
<!-- ENDIF -->
<!-- IF IE_VERSION neq '6' -->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/gantry-inputs.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/fusion.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/sfhover.js"></script>
<!-- ENDIF -->
<!-- IF IE_VERSION neq '6' -->
<script type="text/javascript">
window.addEvent('load', function() {
					new Fusion('ul.menutop', {
						pill: 0,
						effect: 'slide and fade',
						opacity: 1,
						hideDelay: 500,
						centered: 0,
						tweakInitial: {'x': -6, 'y': 0},
        				tweakSubsequent: {'x': -4, 'y': -22},
						menuFx: {duration: 200, transition: Fx.Transitions.Sine.easeOut},
						pillFx: {duration: 400, transition: Fx.Transitions.Back.easeOut}
					});
	            });
</script>
<!-- ENDIF -->
<!-- IF DOMIN_STYLE eq 'style1' or DOMIN_STYLE eq 'style3' or DOMIN_STYLE eq 'style5' -->
<script type="text/javascript">
window.addEvent('domready', function() {
  var newImagePath = '{ROOT_PATH}styles/dominion_dark_imageset/imageset/'; // remember to add the ending forward slash
  var classToSearch = 'dl.icon';
  var els = $$(classToSearch);
  if (els.length) {
    els.each(function(el) {
      var bg = el.getStyle('background-image'), newBg, imgSource;
      bg = bg.replace('")', '').replace(")", '');
      var tmp = bg.split('/');
      imgSource = tmp[tmp.length - 1];
      el.setStyle('background-image', 'url('+newImagePath+imgSource+')');     
    });
  }
});
</script>
<!-- ENDIF -->
<!-- IF not DOMIN_STYLE -->
<script type="text/javascript">
window.addEvent('domready', function() {
  var newImagePath = '{ROOT_PATH}styles/dominion_dark_imageset/imageset/'; // remember to add the ending forward slash
  var classToSearch = 'dl.icon';
  var els = $$(classToSearch);
  if (els.length) {
    els.each(function(el) {
      var bg = el.getStyle('background-image'), newBg, imgSource;
      bg = bg.replace('")', '').replace(")", '');
      var tmp = bg.split('/');
      imgSource = tmp[tmp.length - 1];
      el.setStyle('background-image', 'url('+newImagePath+imgSource+')');     
    });
  }
});
</script>
<!-- ENDIF -->
<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
	<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- IF DOMIN_MENUPOSITION eq 'full' -->	
	  <style type="text/css">
	  .rtl .forabg, .rtl .forumbg {margin-left:0;margin-right:-8px;padding-left:18px;width:102%;}
	  <!-- IF IE_VERSION eq '6' -->
	   .rtl .forabg, .rtl .forumbg {margin-left:-20px;margin-right:0px;padding-left:0px;width:100%;}
	   .rtl #wrap {position: static;}
	  <!-- ENDIF -->
	  
	  </style>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- IF IE_VERSION eq '7' -->
<style type="text/css">
.forabg,.forumbg {margin-right:-10px;zoom: 1;}
<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
.forabg,.forumbg {width: 100%;}
ul.leftside {padding-right: 15px;}
<!-- ENDIF -->
</style>
<!-- ENDIF -->


<script type="text/javascript" src="{ROOT_PATH}highslide/highslide-full.js"></script>
<link href="{ROOT_PATH}highslide/highslide.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
// <![CDATA[
hs.graphicsDir = '{ROOT_PATH}highslide/graphics/';
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = 'rounded-white';
hs.fadeInOut = true;
//hs.dimmingOpacity = 0.75;

// Add the controlbar
hs.addSlideshow({
	//slideshowGroup: 'group1',
	interval: 5000,
	repeat: false,
	useControls: true,
	fixedControls: 'fit',
	overlayOptions: {
		opacity: 0.75,
		position: 'bottom center',
		hideOnMouseOut: true
	}
});
// ]]>
</script>
<!-- INCLUDE gallery/plugins_header.html -->
<style type="text/css">
@import url('{T_THEME_PATH}/phpBBHideBlockStyle.css');
<!-- IF not S_USER_LOGGED_IN -->
div.phpBBHideBlockA {display: none;}
<!-- ELSE -->
div.phpBBHideBlockB {display: none;}
<!-- ENDIF -->
</style>
<script src="http://eu.battle.net/d3/static/js/tooltips.js"></script>
<!-- IF (S_RBPM_ENABLE and S_USER_NEW_PRIVMSG) or (S_RBPM_INSC_ENABLE and S_USER_NEW_PRIVMSG) -->
<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/jquery-blink.js"></script>
<script type="text/javascript">
// 
$(document).ready(function()
{
        $('.blink').blink();
});
// 
</script><!-- ENDIF -->
</head>

<body id="phpbb" class="backgroundlevel-<!-- IF IE_VERSION neq '6' --><!-- IF DOMIN_BG_LEVEL -->{DOMIN_BG_LEVEL}<!-- ELSE -->high<!-- ENDIF --><!-- ELSE -->low<!-- ENDIF -->  bodylevel-<!-- IF IE_VERSION neq '6' --><!-- IF DOMIN_BODY_LEVEL -->{DOMIN_BODY_LEVEL}<!-- ELSE -->high<!-- ENDIF --><!-- ELSE -->low<!-- ENDIF --> cssstyle-<!-- IF DOMIN_STYLE -->{DOMIN_STYLE}<!-- ELSE -->style1<!-- ENDIF --> font-family-<!-- IF DOMIN_FONTFACE -->{DOMIN_FONTFACE}<!-- ELSE -->helvetica<!-- ENDIF --> font-size-is-default menu-type-<!-- IF IE_VERSION neq '6' -->fusionmenu<!-- ELSE -->suckerfishmenu<!-- ENDIF -->  section-{SCRIPT_NAME} {S_CONTENT_DIRECTION} col12 <!-- IF not DOMIN_STYLE -->body-dark<!-- ELSE --><!-- IF DOMIN_STYLE eq 'style1' or DOMIN_STYLE eq 'style3' or DOMIN_STYLE eq 'style5' -->body-dark<!-- ELSE -->body-light<!-- ENDIF --><!-- ENDIF -->">

<div id="rt-background"><div id="rt-background2"><div id="rt-background3">
			<div class="rt-container">
								<div id="rt-drawer">
					    <div class="rt-grid-12 rt-alpha rt-omega">
        

    </div>
    					<div class="clear"></div>
				</div>
												<div id="rt-header">
										<div id="rt-header-overlay">
						    <div class="rt-grid-6 rt-alpha">
        			<div class="rt-block">
    	    		<a href="<!-- IF DOMIN_LOGO_LINK -->{DOMIN_LOGO_LINK}<!-- ELSE -->{U_INDEX}<!-- ENDIF -->" id="rt-logo"></a>
    		</div>
	    

    </div>
        <!-- IF SHOW_DOMIN_TOP -->
	<div class="rt-grid-6 rt-omega">
                        <div class="topbar">
                    <div class="rt-block">
                				<div class="module-content">
					<div class="module-content2">
                		 <ul class="menu">
<!-- IF DOMIN_BMENU_LINK1_HREF or DOMIN_BMENU_LINK1_DESC --><li class="item"><a class="bullet" href="{DOMIN_BMENU_LINK1_HREF}"><span>{DOMIN_BMENU_LINK1_DESC}</span></a></li><!-- ENDIF -->
<!-- IF DOMIN_BMENU_LINK2_HREF or DOMIN_BMENU_LINK2_DESC --><li class="item"><a class="bullet" href="{DOMIN_BMENU_LINK2_HREF}"><span>{DOMIN_BMENU_LINK2_DESC}</span></a></li><!-- ENDIF -->
<!-- IF DOMIN_BMENU_LINK3_HREF or DOMIN_BMENU_LINK3_DESC --><li class="item"><a class="bullet" href="{DOMIN_BMENU_LINK3_HREF}"><span>{DOMIN_BMENU_LINK3_DESC}</span></a></li><!-- ENDIF -->
<!-- IF DOMIN_BMENU_LINK4_HREF or DOMIN_BMENU_LINK4_DESC --><li class="item"><a class="bullet" href="{DOMIN_BMENU_LINK4_HREF}"><span>{DOMIN_BMENU_LINK4_DESC}</span></a></li><!-- ENDIF -->
			</ul>
					</div>
				</div>
            </div>
                </div>
		
    </div><!-- ENDIF -->
    						<div class="clear"></div>
					</div>
															<div id="rt-menu">
						<div id="rt-menu-overlay">
							<!-- IF S_ALLOW_JMENU -->
                            <!-- IF S_USER_LOGGED_IN -->
                            {T_JOOMLA_MENU_REG}
                            <!-- ELSE -->
                            {T_JOOMLA_MENU}
                            <!-- ENDIF -->
                                                                <!-- ELSE -->
									
									  <ul class="menutop level1">
<li <!-- IF IE_VERSION neq '6' --><!-- IF U_INDEX_STYLE -->class="active root"<!-- ELSE -->class="root"<!-- ENDIF --><!-- ELSE --><!-- IF U_INDEX_STYLE -->id="current"<!-- ENDIF --><!-- ENDIF -->><a class="orphan item" href="{U_INDEX}" accesskey="h"><span>{L_INDEX}</span></a></li>
 <li <!-- IF IE_VERSION neq '6' --><!-- IF U_FAQ_STYLE -->class="active root"<!-- ELSE -->class="root"<!-- ENDIF --><!-- ELSE --><!-- IF U_FAQ_STYLE -->id="current"<!-- ENDIF --><!-- ENDIF -->><a class="orphan item bullet" href="http://www.diablo3.co.il" title="פורטל"><span>פורטל</span></a></li>

<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
 
                <li  <!-- IF IE_VERSION neq '6' --><!-- IF U_PROFILE_STYLE -->class="active root"<!-- ELSE -->class="root"<!-- ENDIF --><!-- ELSE --><!-- IF U_PROFILE_STYLE -->id="current"<!-- ENDIF  --><!-- ENDIF -->><a class="orphan item bullet" href="{U_PROFILE}" title="{L_PROFILE}" accesskey="u"><span>{L_PROFILE}</span></a></li>


<!-- IF S_DISPLAY_PM --><li <!-- IF IE_VERSION neq '6' --><!-- IF U_PRIVATEMSGS_STYLE -->class="active root"<!-- ELSE -->class="root"<!-- ENDIF --><!-- ELSE --><!-- IF U_PRIVATEMSGS_STYLE -->id="current"<!-- ENDIF --><!-- ENDIF -->><a class="orphan item bullet" href="{U_PRIVATEMSGS}"><span>{PRIVATE_MESSAGE_INFO}</span></a></li><!-- ENDIF -->
<!-- ENDIF -->  
 
 
<li <!-- IF IE_VERSION neq '6' --><!-- IF U_FAQ_STYLE -->class="active root"<!-- ELSE -->class="root"<!-- ENDIF --><!-- ELSE --><!-- IF U_FAQ_STYLE -->id="current"<!-- ENDIF --><!-- ENDIF -->><a class="orphan item bullet" href="{U_FAQ}" title="{L_FAQ_EXPLAIN}"><span>{L_FAQ}</span></a></li>
        
	<!-- IF not S_IS_BOT -->
		     <!-- IF not S_USER_LOGGED_IN --><li <!-- IF IE_VERSION neq '6' --><!-- IF U_REGISTER_STYLE -->class="active root"<!-- ELSE -->class="root"<!-- ENDIF --><!-- ELSE --><!-- IF U_REGISTER_STYLE -->id="current"<!-- ENDIF --><!-- ENDIF -->></li><!-- ENDIF -->
                    <li <!-- IF IE_VERSION neq '6' --><!-- IF U_LOGIN_LOGOUT_STYLE -->class="active root"<!-- ELSE -->class="root"<!-- ENDIF --><!-- ELSE --><!-- IF U_LOGIN_LOGOUT_STYLE -->id="current"<!-- ENDIF --><!-- ENDIF -->><a class="orphan item bullet" href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l"><span>{L_LOGIN_LOGOUT}</span></a></li>
                <!-- ENDIF -->
 
</ul>
                    <!-- ENDIF -->
		    <!-- IF ALLOW_DOMIN_COLORSWITCHER -->
		     <!-- IF IE_VERSION neq '6' -->
		      <script type="text/javascript">
window.addEvent('load', function() {
					new Fusion('ul#stylesw', {
						pill: 0,
						effect: 'slide and fade',
						opacity: 1,
						hideDelay: 500,
						centered: 0,
						tweakInitial: {'x': -6, 'y': 0},
        				tweakSubsequent: {'x': -4, 'y': -22},
						menuFx: {duration: 200, transition: Fx.Transitions.Sine.easeOut},
						pillFx: {duration: 400, transition: Fx.Transitions.Back.easeOut}
					});
	            });

  </script>
		<!-- ENDIF -->    
		    <ul id="stylesw" class="menutop level1" style="padding-left: 0px; margin-left: -6px;">
			
		
		    <li class="item73 parent root" >
			<a class="daddy item bullet " href="{U_INDEX}"  >
			<span>
		    			Preset Styles						  
			   
			</span>
		</a>
		
			<div class="fusion-submenu-wrapper level2">
			<div class="drop-top"></div>
			<ul class="level2">
							
					<li class="item77 parent" >
			<a class="daddy item image" href="index.php?ntheme=style1&bg_level=high"  >
			<span>
		    		        <img src="{T_THEME_PATH}/images/icons/icon-style1.png" alt="icon-style1.png" />
		    			Style 1			   
			</span>
		</a>
		
			<div class="fusion-submenu-wrapper level3">
			<div class="drop-top"></div>
			<ul class="level3">
							
					<li class="item146" >
			<a class="orphan item bullet" href="index.php?ntheme=style1&bg_level=high"  >
			<span>
		    			High Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item147" >
			<a class="orphan item bullet" href="index.php?ntheme=style1&bg_level=med"  >
			<span>
		    			Med Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item148" >
			<a class="orphan item bullet" href="index.php?ntheme=style1&bg_level=low"  >
			<span>
		    			Low Background Level			   
			</span>
		</a>
		
		
</li>	
							</ul>
		</div>
		
</li>	
							
					<li class="item149 parent" >
			<a class="daddy item image" href="index.php?ntheme=style2&bg_level=high"  >
			<span>
		    		        <img src="{T_THEME_PATH}/images/icons/icon-style2.png" alt="icon-style2.png" />
		    			Style 2			   
			</span>
		</a>
		
			<div class="fusion-submenu-wrapper level3">
			<div class="drop-top"></div>
			<ul class="level3">
							
					<li class="item150" >
			<a class="orphan item bullet" href="index.php?ntheme=style2&bg_level=high"  >
			<span>
		    			High Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item151" >
			<a class="orphan item bullet" href="index.php?ntheme=style2&bg_level=med"  >
			<span>
		    			Med Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item152" >
			<a class="orphan item bullet" href="index.php?ntheme=style2&bg_level=low"  >
			<span>
		    			Low Background Level			   
			</span>
		</a>
		
		
</li>	
							</ul>
		</div>
		
</li>	
							
					<li class="item153 parent" >
			<a class="daddy item image" href="index.php?ntheme=style3&bg_level=high"  >
			<span>
		    		        <img src="{T_THEME_PATH}/images/icons/icon-style3.png" alt="icon-style3.png" />
		    			Style 3			   
			</span>
		</a>
		
			<div class="fusion-submenu-wrapper level3">
			<div class="drop-top"></div>
			<ul class="level3">
							
					<li class="item154" >
			<a class="orphan item bullet" href="index.php?ntheme=style3&bg_level=high"  >
			<span>
		    			High Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item155" >
			<a class="orphan item bullet" href="index.php?ntheme=style3&bg_level=med"  >
			<span>
		    			Med Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item156" >
			<a class="orphan item bullet" href="index.php?ntheme=style3&bg_level=low"  >
			<span>
		    			Low Background Level			   
			</span>
		</a>
		
		
</li>	
							</ul>
		</div>
		
</li>	
							
					<li class="item157 parent" >
			<a class="daddy item image" href="index.php?ntheme=style4&bg_level=high"  >
			<span>
		    		        <img src="{T_THEME_PATH}/images/icons/icon-style4.png" alt="icon-style4.png" />
		    			Style 4			   
			</span>
		</a>
		
			<div class="fusion-submenu-wrapper level3">
			<div class="drop-top"></div>
			<ul class="level3">
							
					<li class="item158" >
			<a class="orphan item bullet" href="index.php?ntheme=style4&bg_level=high"  >
			<span>
		    			High Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item159" >
			<a class="orphan item bullet" href="index.php?ntheme=style4&bg_level=med"  >
			<span>
		    			Med Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item160" >
			<a class="orphan item bullet" href="index.php?ntheme=style4&bg_level=low"  >
			<span>
		    			Low Background Level			   
			</span>
		</a>
		
		
</li>	
							</ul>
		</div>
		
</li>	
							
					<li class="item161 parent" >
			<a class="daddy item image" href="index.php?ntheme=style5&bg_level=high"  >
			<span>
		    		        <img src="{T_THEME_PATH}/images/icons/icon-style5.png" alt="icon-style5.png" />
		    			Style 5			   
			</span>
		</a>
		
			<div class="fusion-submenu-wrapper level3">
			<div class="drop-top"></div>
			<ul class="level3">
							
					<li class="item162" >
			<a class="orphan item bullet" href="index.php?ntheme=style5&bg_level=high"  >
			<span>
		    			High Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item163" >
			<a class="orphan item bullet" href="index.php?ntheme=style5&bg_level=med"  >
			<span>
		    			Med Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item164" >
			<a class="orphan item bullet" href="index.php?ntheme=style5&bg_level=low"  >
			<span>
		    			Low Background Level			   
			</span>
		</a>
		
		
</li>	
							</ul>
		</div>
		
</li>	
							
					<li class="item165 parent" >
			<a class="daddy item image" href="index.php?ntheme=style6&bg_level=high"  >
			<span>
		    		        <img src="{T_THEME_PATH}/images/icons/icon-style6.png" alt="icon-style6.png" />
		    			Style 6			   
			</span>
		</a>
		
			<div class="fusion-submenu-wrapper level3">
			<div class="drop-top"></div>
			<ul class="level3">
							
					<li class="item166" >
			<a class="orphan item bullet" href="index.php?ntheme=style6&bg_level=high"  >
			<span>
		    			High Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item167" >
			<a class="orphan item bullet" href="index.php?ntheme=style6&bg_level=med"  >
			<span>
		    			Med Background Level			   
			</span>
		</a>
		
		
</li>	
							
					<li class="item168" >
			<a class="orphan item bullet" href="index.php?ntheme=style6&bg_level=low"  >
			<span>
		    			Low Background Level			   
			</span>
		</a>
</li>	
							</ul>
		</div>
		
</li>	
							</ul>
		</div>
		
</li>	</ul>
		    <!-- ENDIF -->
							<div class="clear"></div>
						</div>
					</div>
									</div>
								<div id="rt-header2"></div>
								<div id="rt-main-surround">
										<div class="rt-main-overlay">
											
											<div id="rt-feature">
							   
							    <div class="rt-grid-10 rt-alpha">
                            
			    <div class="rt-block">
                				<div class="module-content">
					<div class="module-content2">
                		<!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH -->
				<form action="{U_SEARCH}" method="post" id="rokajaxsearch" class="light">
<div class="rokajaxsearch">
	<div class="roksearch-wrapper">
		<input name="keywords" id="roksearch_search_str" type="text"  title="{L_SEARCH_KEYWORDS}" class="inputbox" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" />
		
	</div>
	
	<div class="search_options">
			<label style="float: left; margin-right: 8px">
			<input type="radio" name="search_advanced" value="local" checked="checked" /><a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH_ADV}</a> {S_SEARCH_HIDDEN_FIELDS}			</label>

					</div>
	
		<div class="clr"></div>
	
	<div id="roksearch_results"></div>
</div>
<div id="rokajaxsearch_tmp" style="visibility:hidden;display:none;"></div>
</form><!-- ENDIF -->
					</div>
				</div>
            </div>
        	
    </div>
											
       <!-- IF SHOW_DOMIN_FONT -->
        <div class="rt-grid-2 rt-omega">
        		<div class="rt-block">
			<div id="rt-accessibility">
				<div class="rt-desc">Text Size</div>
				<div id="rt-buttons">
<a href="#" onclick="fontsizedown(); return false;" onkeypress="fontsizedown(); return false;"  title="{L_CHANGE_FONT_SIZE}" class="small"><span class="button"></span></a>
<a href="#" onclick="fontsizeup(); return false;" onkeypress="fontsizeup(); return false;" title="{L_CHANGE_FONT_SIZE}" class="large"><span class="button"></span></a>
				</div>
			</div>
			<div class="clear"></div>
		</div>
		

    </div>
	<!-- ENDIF -->
    							<div class="clear"></div>
						</div>
											
											
																									<!-- IF SHOW_DOMIN_PATHWAY -->
									<div id="rt-breadcrumbs">
				<div class="rt-breadcrumb-surround">
					<a href="{U_INDEX}" id="breadcrumbs-home"></a>
<span class="breadcrumbs pathway">
<span class="no-link">{L_INDEX}</span><!-- BEGIN navlinks --> <img src="{T_THEME_PATH}/images/arrow.png" alt=""  /> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></span>
					</div><div class="clear"></div>
				
			</div><!-- ENDIF -->
																							
																							              <div id="rt-main" class="sa4-mb8">
					<div class="rt-container">
	                     <div class="rt-grid-<!-- IF DOMIN_MENUPOSITION eq 'full' -->12<!-- ELSE -->8 <!-- ENDIF --> <!-- IF DOMIN_MENUPOSITION == left -->rt-push-4<!-- ENDIF -->">
                                                        							<div class="rt-block">
                            	<div id="rt-mainbody">
                                	
<div class="rt-joomla ">
	
	<div class="rt-article">
	
				
		<div class="module-full"><div class="module-surround"><div class="module-tm"><div class="module-l"><div class="module-r"><div class="module-bm"><div class="module-tl"><div class="module-tr"><div class="module-bl"><div class="module-br">
		
							<div class="rt-headline">
								<div class="module-title"><div class="module-title2"><div class="module-title3">
										<!-- IF U_EMAIL_TOPIC or U_EMAIL_PM or U_PRINT_TOPIC or U_PRINT_PM -->
										<div class="rt-article-icons">								
<!-- IF U_EMAIL_TOPIC --><a href="{U_EMAIL_TOPIC}" title="{L_EMAIL_TOPIC}"><span class="icon email"></span></a><!-- ENDIF -->
<!-- IF U_EMAIL_PM --><a href="{U_EMAIL_PM}" title="{L_EMAIL_PM}" ><span class="icon email"></span></a><!-- ENDIF -->
<!-- IF U_PRINT_TOPIC --><a href="{U_PRINT_TOPIC}" title="{L_PRINT_TOPIC}" accesskey="p"><span class="icon print"></span></a><!-- ENDIF -->
<!-- IF U_PRINT_PM --><a href="{U_PRINT_PM}" title="{L_PRINT_PM}" accesskey="p"><span class="icon print"></span></a><!-- ENDIF -->
										</div><!-- ENDIF -->
	<h1 class="rt-article-title"><!-- IF FORUM_NAME -->{FORUM_NAME}<!-- ELSE -->{PAGE_TITLE}<!-- ENDIF -->
	</h1>
				</div></div></div>
																					<div class="clear"></div>
			</div>
<div id="wrap">
	<a id="top" name="top" accesskey="t"></a>

	<a href="ts3server://diablo3.co.il?password=5535"><img src="http://www.diablo3.co.il/forum/adv/teamspeak.jpg"></a>

	
	<div id="page-header">
<!-- IF DOMIN_MENUPOSITION eq 'full' or DOMIN_MENUPOSITION eq 'fluid' -->
		<div class="navbar">
			<div class="inner">
			<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
			<ul class="linklist leftside">
				<li class="icon-ucp">
					<a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="e">{L_PROFILE}</a>
						<!-- IF S_DISPLAY_PM --> &bull;
	<!-- IF S_RBPM_ENABLE and S_USER_NEW_PRIVMSG -->
	<!-- IF S_RBPM_INSC_ENABLE and S_USER_NEW_PRIVMSG -->
	<!-- IF S_RBPM_ENABLE_BACKGROUND -->
	<span style="background:rgba({S_RBPM_BACKGROUND_R},{S_RBPM_BACKGROUND_G},{S_RBPM_BACKGROUND_B},{S_RBPM_BACKGROUND_TRANSP}); padding: 3px 0px 3px 7px; border: {S_RBPM_BORDER_WIDTH} {S_RBPM_BORDER_STYLE} {S_RBPM_BORDER_COLOUR}; border-right: 0px; -webkit-border-radius: {S_RBPM_BORDER_RADIUS}; -khtml-border-radius: {S_RBPM_BORDER_RADIUS}; -moz-border-radius: {S_RBPM_BORDER_RADIUS}; border-radius: {S_RBPM_BORDER_RADIUS}; -webkit-border-radius-topright: 0px; -khtml-border-radius-topright: 0px; -moz-border-radius-topright: 0px; border-radius-topright: 0px; -webkit-border-radius-bottomright: 0px; -khtml-border-radius-bottomright: 0px; -moz-border-radius-bottomright: 0px; border-radius-bottomright: 0px;">
	<!-- ELSE -->
	<span style=" background-color: none">
	<!-- ENDIF -->
	<!-- ENDIF -->
	<span class="blink" style="color:{S_RBPM_COLOR}; font:{S_RBPM_ITALIC} {S_RBPM_BOLD} {S_RBPM_SIZE} {S_RBPM_FAMILY}; letter-spacing:{S_RBPM_SPACING}; text-transform:{S_RBPM_TRANSFORM}; text-shadow: {S_RBPM_SHADOWH} {S_RBPM_SHADOWV} {S_RBPM_SHADOW_BLUR} {S_RBPM_SHADOW_COLOUR}; text-decoration:{S_RBPM_DECORATION};">
		{S_USER_NEW_PRIVMSG}
	</span></span>
	<!-- ELSE -->
	<strong>{S_USER_NEW_PRIVMSG}</strong>
	<!-- ENDIF -->
	<a href="{U_PRIVATEMSGS}">
	<!-- IF S_RBPM_INSC_ENABLE and S_USER_NEW_PRIVMSG -->
	<!-- IF S_RBPM_ENABLE and S_USER_NEW_PRIVMSG -->
	<!-- IF S_RBPM_ENABLE_BACKGROUND -->
	<span style="background:rgba({S_RBPM_BACKGROUND_R},{S_RBPM_BACKGROUND_G},{S_RBPM_BACKGROUND_B},{S_RBPM_BACKGROUND_TRANSP}); padding: 3px 7px 3px 0px; border: {S_RBPM_BORDER_WIDTH} {S_RBPM_BORDER_STYLE} {S_RBPM_BORDER_COLOUR}; border-left: 0px; -webkit-border-radius:{S_RBPM_BORDER_RADIUS}; -khtml-border-radius:{S_RBPM_BORDER_RADIUS}; -moz-border-radius:{S_RBPM_BORDER_RADIUS}; border-radius:{S_RBPM_BORDER_RADIUS}; -webkit-border-radius-topleft: 0px; -khtml-border-radius-topleft: 0px; -moz-border-radius-topleft: 0px; border-radius-topleft: 0px; -webkit-border-radius-bottomleft: 0px; -khtml-border-radius-bottomleft: 0px; -moz-border-radius-bottomleft: 0px; border-radius-bottomleft: 0px;">
	<!-- ELSE -->
	<span style="background-color: none">
	<!-- ENDIF -->
	<!-- ENDIF -->
	<span class="blink" style="color:{S_RBPM_INSC_COLOR}; font:{S_RBPM_ITALIC} {S_RBPM_VARIANT} {S_RBPM_BOLD} {S_RBPM_SIZE} {S_RBPM_FAMILY}; letter-spacing:{S_RBPM_SPACING}; text-transform:{S_RBPM_TRANSFORM}; text-shadow: {S_RBPM_SHADOWH} {S_RBPM_SHADOWV} {S_RBPM_SHADOW_BLUR} {S_RBPM_INSC_SHADOW_COLOUR}; text-decoration:{S_RBPM_DECORATION};">
		{PRIVATE_MESSAGE_INFO}
	</span>
	<!-- IF S_RBPM_ENABLE_UNREAD and PRIVATE_MESSAGE_INFO_UNREAD -->
	<span style="color:{S_RBPM_UNREAD_COLOR}"><!-- IF S_RBPM_ENABLE_UNREAD_BLINK --><span class="blink">& {PRIVATE_MESSAGE_INFO_UNREAD}</span><!-- ELSE -->& {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></span>
	<!-- ENDIF -->
	</span>
	<!-- ELSE -->
	{PRIVATE_MESSAGE_INFO}
	<!-- IF S_RBPM_ENABLE_UNREAD and PRIVATE_MESSAGE_INFO_UNREAD --> & {PRIVATE_MESSAGE_INFO_UNREAD}
	<!-- ENDIF -->
	<!-- ENDIF --></a></span>
<!-- ENDIF -->

					<!-- IF S_DISPLAY_SEARCH -->&nbsp;&bull;
					<a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a>
					<!-- ENDIF -->
					<!-- IF U_RESTORE_PERMISSIONS --> &bull;
					<a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a>
					<!-- ENDIF -->
				</li>
			</ul>
			<!-- ENDIF -->

			<ul class="linklist rightside">
				<li class="icon-faq"><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li>
				<!-- IF not S_IS_BOT -->
					<!-- IF S_DISPLAY_MEMBERLIST --><li class="icon-members"><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF -->
					<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --><li class="icon-register"><a href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
					<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="x">{L_LOGIN_LOGOUT}</a></li>
				<!-- ENDIF -->
			</ul>
</div>
		</div>

<!-- ENDIF -->

	</div>

	<a name="start_here"></a>
	<div id="page-body">
		 <!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) --> 
		<div id="information" class="rules">
				<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
		</div>
		<!-- ENDIF -->
		
Regards,
uzi
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Scroll not work - Yes i read Note about jquery

Post by Stoker »

Take this line: <script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/jquery-1.7.2.min.js"></script>
And move it up under: <script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>
Board rules! No PM support
uzidesign
BBCoder II
BBCoder II
Posts: 13
Joined: 14 Aug 2010, 13:42

Scroll not work - Yes i read Note about jquery

Post by uzidesign »

Hi Stoker,
Thanks for your help.

I try to do what you recommended and still not work (clean cache/style etc').
I try also to change from:

Code: Select all

<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/jquery-1.7.2.min.js"></script>
To

Code: Select all

<script type="text/javascript" src="{ROOT_PATH}script/jquery-1.7.min.js"></script>
Still not work..

Live if needed:

Code: Select all

http://www.diablo3.co.il/forum/
Thanks!
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Scroll not work - Yes i read Note about jquery

Post by Stoker »

Im not sure what the problem is. But you are using a lot of javascript on your site that could conflict.
Try disable some of it until you find the problem.
Board rules! No PM support
uzidesign
BBCoder II
BBCoder II
Posts: 13
Joined: 14 Aug 2010, 13:42

Scroll not work - Yes i read Note about jquery

Post by uzidesign »

OK thanks. I will try and update.
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Scroll not work - Yes i read Note about jquery

Post by Stoker »

It looks like its working now.
Board rules! No PM support
uzidesign
BBCoder II
BBCoder II
Posts: 13
Joined: 14 Aug 2010, 13:42

Scroll not work - Yes i read Note about jquery

Post by uzidesign »

Yes. :)

It's one of them:

Code: Select all

<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/mootools-release-1.11.js"></script>
<!-- IF IE_VERSION eq '6'-->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/gantry-ie6menu.js"></script>
<!-- ENDIF -->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/rokfonts.js"></script>
<!-- IF ENABLE_DOMIN_FONTSPANS -->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/gantry-buildspans.js"></script>
<!-- ENDIF -->
<script type="text/javascript" src="{T_TEMPLATE_PATH}/rt_js/gantry-totop.js"></script>
I'll check deeply later. I bet on mootools..
:thumb:
Blondawy
BBCoder I
BBCoder I
Posts: 1
Joined: 01 Sep 2012, 11:37
BBCodes: 3

Scroll not work - Yes i read Note about jquery

Post by Blondawy »

I have the same problem and each time I press on a button of the scroll bar it's send me to the top of the page.

I did everything told here but the same problem :(

*SOLVED* it was a mistake in the code i did. i re insert the code and it worked perfectly.

sorry for disturb
Last edited by Blondawy on 01 Sep 2012, 12:01, edited 1 time in total.
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Scroll not work - Yes i read Note about jquery

Post by Stoker »

Only thing that can stop the scroll working is having jquery twice.
Board rules! No PM support
Locked