Which file can i change this code in?

Download and support for PhpBB3 Top Stats Mod
Locked
VSaBaH
BBCoder II
BBCoder II
Posts: 5
Joined: 25 Jan 2012, 20:02
BBCodes: 1

Which file can i change this code in?

Post 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...
VSaBaH
BBCoder II
BBCoder II
Posts: 5
Joined: 25 Jan 2012, 20:02
BBCodes: 1

Which file can i change this code in?

Post 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>
User avatar
Stoker
Site Admin
Site Admin
Posts: 3525
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Which file can i change this code in?

Post by Stoker »

Its explained in the edit comments in the install.xml
Board rules! No PM support
VSaBaH
BBCoder II
BBCoder II
Posts: 5
Joined: 25 Jan 2012, 20:02
BBCodes: 1

Which file can i change this code in?

Post by VSaBaH »

Thanks...
Locked