Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author samhagin

    (@samhagin)

    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.

    Thread Starter drbrahm

    (@drbrahm)

    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

    Plugin Author samhagin

    (@samhagin)

    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>
    Thread Starter drbrahm

    (@drbrahm)

    I have just fiexe de ID as you metioned and I’ve got it fixed.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Ca not be fixed?’ is closed to new replies.