slewster 0 Report post Posted January 3, 2010 I installed the Paypal donations plugin and placed the button on the bottom footer bar. However, there is a gray border that surrounds the button and i can't seem to get rid of it! I have tried changing the border code for the fbox and sidebars to 0px in the css, but it's not working. Please tell me what to do to remove the border around the button. Thanks. Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 3, 2010 First, do you have Firebug installed? You probably need to add a custom css rule for it.. do you have a live link? Share this post Link to post Share on other sites
slewster 0 Report post Posted January 5, 2010 What would be the correct custom css rule to fix it? I was thinking img {border: none} and tried it but it didnt work. Forgive me, i am not really a developer. Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 5, 2010 the border:none is close but we need the actual 'class' of the paypal html element. Use firebug to identify it or give us a live link so we can help... Share this post Link to post Share on other sites
slewster 0 Report post Posted January 7, 2010 im too embarasssed to show my site to anyone now. but here is the class for the widget that i found: /** * The Class for the Widget * */ if (class_exists('WP_Widget')) : class paypal_donations_Widget extends WP_Widget { /** * Constructor * */ function paypal_donations_Widget() { // Widget settings. $widget_ops = array ( 'classname' => 'widget_paypal_donations', 'description' => __('PayPal Donation Button', 'paypal-donations') ); // Widget control settings. $control_ops = array( 'id_base' => 'paypal_donations' ); // Create the Widget $this->WP_Widget( 'paypal_donations', 'PayPal Donations', $widget_ops ); } what do you make of it? Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 7, 2010 can you get me the HTML that its generating? (use firebug to get this) Share this post Link to post Share on other sites
nickwestergaard 0 Report post Posted April 20, 2010 I am having the same issue with the button on my site as well. Here is the link: http://jacobyforhouse.org/ Any help would be greatly appreciated. Thanks - Nick Share this post Link to post Share on other sites
cmunns 16 Report post Posted April 21, 2010 try adding this to your custom css area in the theme admin `form input {border-width:0px;}` Share this post Link to post Share on other sites
calumks 0 Report post Posted May 1, 2010 Thanks! This fixed the problem! Share this post Link to post Share on other sites
kev-sinfield 0 Report post Posted May 3, 2010 I am having the same problem, tried custom css, form input {border-width:0px;} but this removed the borders from the comments. http://planit.kbbdesigner.com/join-now Any help would be appreciated. Share this post Link to post Share on other sites
cmunns 16 Report post Posted May 3, 2010 I can't find your paypal button. You will just have to add a more specific css class so it doesn't include the comments. Share this post Link to post Share on other sites
giulioregosa 0 Report post Posted May 7, 2010 I am having the same problem look feature box 4 at http://www.regosa.it/animatest I don't understand exactly where to try to put form input {border-width:0px;} to resolve this problem can you the file and the point where past the code? thanks Share this post Link to post Share on other sites
cmunns 16 Report post Posted May 10, 2010 You don't have to mess with the files. Just paste into the custom css code area in your main theme options area under custom code. Share this post Link to post Share on other sites
giulioregosa 0 Report post Posted November 29, 2010 Done & Solved! thanks Share this post Link to post Share on other sites