I have tried to set up a feedback script from codecanyon, however I have 2 problems with it.
1) It doesn't appear above my wordpress background
2) When you scroll down the box will appear because the background has faded, however it does not link [It uses js to open the box from the side]
Site: http://www.sourceful.co.uk/wordpress/
We put this in the header.php of the template:
<!-- include jQuery -->
<script type="text/javascript" src="http://www.sourceful.co.uk/feedback/jquery.min.js"></script>
<!-- include fancybox -->
<script type="text/javascript" src="http://www.sourceful.co.uk/feedback/fancybox/jquery.fancybox-1.3.0.pack.js"></script>
<link rel="stylesheet" href="http://www.sourceful.co.uk/feedback/fancybox/jquery.fancybox-1.3.0.css" type="text/css" media="screen" />
<!-- include feedback widget -->
<link type="text/css" href="http://www.sourceful.co.uk/feedback/widget/feedback_widget.css" rel="stylesheet" />
<script type="text/javascript" src="http://www.sourceful.co.uk/feedback/widget/jquery.feedback.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#feedback-container').feedback();
//fancybox iframe
$(".iframe").fancybox({
'width': '50%',
'height': '70%',
'type': 'iframe'
});
});
</script>
And in the header.php AFTER the header tags, I used this code:
<div id="feedback-container">
<div id="feedback" class="feedback-right"></div>
</div>