koolkatwebdesigns
Forum Replies Created
-
I have it working now. I needed wmode=window to get the jwplayer to always be on top.
I am having trouble getting this to work in ie7 and ie8. Any suggestions?
Thanks.
Ugh – the post keeps removing my link inbetween the <p> tags but there should be an href=”#”
Correction – before submit button add:
p class=”sendbtn”></p>
And here is the CSS I use for the sendbtn:
p.sendbtn a {
background:url(“images/send-btn.jpg”) repeat scroll 0 0 transparent;
float:left;
height:35px;
width:132px;
}
#maincontent p.sendbtn a:hover, #maincontent p.sendbtn a:focus {
background-position:0 -35px;
}Here is a solution I used on this page:
In contact form settings before the submit button I add:
<p class=”sendbtn”></p>
In my styles.css I add:
input.wpcf7-submit {
display:none;
}
in my header.php file I use this jQuery:
jQuery(“.wpcf7-form p.sendbtn a”).click(function() {
jQuery(“.wpcf7-submit”).click();
return false;
});