1
I'm using
Modern Blue them of TSBMusic.
The horizontal navigation menu uses jQuery script and javascript with $(document).ready.
<script type="text/javascript">
$(document).ready(
function()
{
$('#dock').Fisheye(
{
maxWidth: 10,
items: 'a',
itemsText: 'span',
container: '.dock-container',
itemWidth: 48,
proximity: 20,
halign : 'center'
}
)
}
);
script>
I have a
jQuery slideshow (Lof JsliderNews) block on my front page with another javascript with $(document).ready.
<script language="javascript" type="text/javascript" src="http://www.skyangelo.com/html/uploads/jQuery_SlideShow/js/jquery.js">script>
<script language="javascript" type="text/javascript" src="http://www.skyangelo.com/html/uploads/jQuery_SlideShow/js/jquery.easing.js">script>
<script language="javascript" type="text/javascript" src="http://www.skyangelo.com/html/uploads/jQuery_SlideShow/js/script.js">script>
<script type="text/javascript">
$(document).ready( function(){
var buttons = { previous:$('#lofslidecontent45 .lof-previous') ,
next:$('#lofslidecontent45 .lof-next') };
$obj = $('#lofslidecontent45').lofJSidernews( { interval : 6000,
direction : 'opacitys',
easing : 'easeInOutExpo',
duration : 2000,
auto : true,
maxItemDisplay : 3,
navPosition : 'horizontal', // horizontal
navigatorHeight : 32,
navigatorWidth : 80,
mainWidth:750,
isPreloaded: true,
buttons : buttons} );
});
script>
It turns out that the navigation menu is not well displayed as all the icons are superposed one on each other.
It look like this:
Can somebody help me as I have no javascript brain....
Thanks a lot.