As an additional to what I said above....

Quote Originally Posted by Doodlebuckets View Post
Everything works great except if you go here http://www.giftsofcharacter.com and look at the sidebox, the radio input is not right. The subscribe button and text-only are in the wrong place.
If you want to stick with your current stylesheet settings then you could try editing includes/templates/YOUR_TEMPLATE/sideboxes/tpl_subscribe.php and change the lines that say...
PHP Code:
   if(EMAIL_USE_HTML == 'true') {
    
$content .= ' <br /> <label>' zen_draw_radio_field('email_format''HTML'true) . ENTRY_EMAIL_HTML_DISPLAY '</label>';
    
$content .= ' <label style="white-space:nowrap">' zen_draw_radio_field('email_format''TEXT'false) . ENTRY_EMAIL_TEXT_DISPLAY '</label>';
   } 
...to be...
PHP Code:
   if(EMAIL_USE_HTML == 'true') {
    
$content .= ' <br /> ' zen_draw_radio_field('email_format''HTML'true'id="emailhtmlformat"');
    
$content .= ' <label for="emailhtmlformat" class="radioButtonLabel">'ENTRY_EMAIL_HTML_DISPLAY '</label>';
    
$content .= zen_draw_radio_field('email_format''TEXT'false'id="emailtextformat"');
    
$content .= ' <label for="emailtextformat" class="radioButtonLabel">'ENTRY_EMAIL_TEXT_DISPLAY '</label>';
   } 
Hope that helps.

Regards,
Christian.