My goodness, that works, thank you so much.
In case anyone else is still struggling, I’ll put it in my layman’s terms:
– create your WP Float content under settings/WP Float Options, Save
– Create a text widget (not a WP Float Widget), I placed mine in the footer so it is present across the whole site
– Copy samhagin’s script above, paste,
– View the html source of your page, find the unique value for the content, mine looked like this:
<div id="12-wpf">
<span style="color: #ffffff;">Text is located here</span> </div>
<script type='text/javascript'>
jQuery(document).ready(function($) {
jQuery('#12-wpf').dcFloater({
width: '',
location: 'top',
align: 'right',
offsetLocation:40,
offsetAlign:100,
speedFloat:'',
tabText: '',
tabClose: false,
easing: 'easeOutQuint',
event: 'hover',
center: true, centerPx: 100, disableFloat:true,
*******idWrapper: '12-wpf-id',*******
});
});
– The line with the asterix is the one you want, copy the value and paste that in in the text widget to replace ‘#wp-float-post-19’
– So my script looks like this:
<script>
jQuery(document).ready(function(){
jQuery('#12-wpf-id').css('position','absolute');
});
</script>