Page 1 of 1

Which file can i change this code in?

Posted: 25 Jan 2012, 20:06
by VSaBaH
Hi,

Which file can i change this code in?

<ul id="vertical-ticker" class="topiclist forums" style="height: 123px; overflow-x: hidden; overflow-y: hidden; ">

I try

Code: Select all

/* Top Stats Mod */
#vertical-ticker{
    position:relative;
    height:123px;
    overflow:hidden;
}
But it didn't work...

Which file can i change this code in?

Posted: 25 Jan 2012, 21:16
by VSaBaH
I change row_height it worked...

Code: Select all

<script type="text/javascript">
//
$(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>

Which file can i change this code in?

Posted: 26 Jan 2012, 09:20
by Stoker
Its explained in the edit comments in the install.xml

Which file can i change this code in?

Posted: 26 Jan 2012, 11:02
by VSaBaH
Thanks...