moving the "up" button
Using Jamroom
I think your referring to the scroll to top button at the bottom of the page, is that correct?
Are you wanting to move it up so it isn't behind the CometChat?
If so, find this in your skins/YOURSKIN/css/footer.css file:
.scrollup {
width:40px;
height:40px;
opacity:0.5;
position:fixed;
bottom:10px;
right:10px;
display:none;
text-indent:-9999px;
background: url('{$jrNingja_img_url}/icon_top.png') no-repeat;
}
and add 20 or 30 pixels to the bottom element...
.scrollup {
width:40px;
height:40px;
opacity:0.5;
position:fixed;
bottom:40px;
right:10px;
display:none;
text-indent:-9999px;
background: url('{$jrNingja_img_url}/icon_top.png') no-repeat;
}