Are you trying to make the image static? If so, refer to this post http://ww.wp.xz.cn/support/topic/stationary-positioning?replies=2
Fixed means it stays visible on the page at all times but does not float.
Hi Samhagin,
I have just did it! But it is not working.
The site is clinicacoser.com and the float image is on the left site.
I have placed this just before </head>
<script>
jQuery(document).ready(function(){
jQuery(‘#967-wpf’).css(‘position’,’absolute’);
});
</script>
The wp float code generated is:
<script type=’text/javascript’>
jQuery(document).ready(function($) {
jQuery(‘#967-wpf’).dcFloater({
width: ‘100’,
location: ‘top’,
align: ‘right’,
offsetLocation:283,
offsetAlign:590,
speedFloat:’1′,
tabText: ”,
tabClose: false,
easing: ‘easeOutQuint’,
event: ‘hover’,
center: true, centerPx: 590, disableFloat:true,
idWrapper: ‘967-wpf-id’,
});
});
</script>
Thanks.
Daniel
there are two ids for any wp float item and the one you shoud use is 967-wpf-id , you can see this when you check the source code for the page so the code will be
<script>
jQuery(document).ready(function(){
jQuery('#967-wpf-id').css('position','absolute');
});
</script>
I have just fiexe de ID as you metioned and I’ve got it fixed.
Thanks.