Hi,
I've installed a newsletter sign up plugin, (Newsletter Sign-Up) but I'm having trouble positioning it.
The code I need to put in is one PHP line
<?php if(function_exists('nsu_signup_form')) nsu_signup_form(); ?>
Thats ok, it works fine but as soon as I put it in a div and float the div, it won't let me input
anything into the boxes.
the code is:
<div id="signup">
<?php if(function_exists('nsu_signup_form')) nsu_signup_form(); ?>
</div>
CSS is:
#signup{
float: right;
}
Its driving me insane, because as far as I know- its ok to put PHP inside a floated div, and my CSS seems to be ok.
Has anybody else had any issues?
I appreciate any feedback!
Padraic