[Plugin: Donate Plus] CSS Fixes
-
Don’t know if this affected anyone else or bothered anyone but on my site the Show on Wall select box and the Comments box are slightly off to the right from the rest.
Here are the fixes required to tidy everything up :
In donate-plus.php
Find the line like
<p class="show_onwall" id="wallops"><label for="show_onwall" >'.__('Show on Wall', 'dplus').':</label><br /><select name="item_number" >
And replace with this
<p class="show_onwall" id="wallops"><label for="show_onwall" >'.__('Show on Wall', 'dplus').':</label><br /><select name="item_number" style="position: relative; left: -10px;">
That fixes the “Show on Wall” box.
Next find this line:
<p class="donor_comment"><label for="donor_comment">'.__('Comments', 'dplus').':</label><br /><textarea name="os1" id="donor_comment" rows="4" cols="45" style="width:90%"></textarea><br /><span id="charinfo">'.__('Write your comment within 199 characters.','dplus').'</span> </p></div>';
Replace with :
<p class="donor_comment"><label for="donor_comment">'.__('Comments', 'dplus').':</label><br /><textarea name="os1" id="donor_comment" rows="4" cols="45" style="width:90%; position: relative; left: -10px;"></textarea><br /><span id="charinfo">'.__('Write your comment within 199 characters.','dplus').'</span> </p></div>';
And that should align the Comments box too.
Hope this helps?
- The topic ‘[Plugin: Donate Plus] CSS Fixes’ is closed to new replies.