Hi guys got a problem hopefully you can help,
var imageHeight = $("#slider > Img").height();
var imageFloat = (imageHeight + 31 / 2);
alert(imageFloat);
$("#slidernavright").css("marginTop",(imageFloat));
Can anyone see the issue here, the alert on imageFloat is bringing back a value of 15.5 which means the imageHeight is not being accounted for, The variable imageHeight is working and retrieving the correct number of the height image, also the margin is working and the div tag is being moved down by 15.5px. Dont know much about jQuery, I think this is just a syntax issue.