Border around Paypal donate button
Started by
slewster
, Jan 03 2010 05:24 AM
13 replies to this topic
#1
Posted 03 January 2010 - 05:24 AM
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.
#2
Posted 03 January 2010 - 09:48 AM
First, do you have Firebug installed?
You probably need to add a custom css rule for it..
do you have a live link?
#3
Posted 05 January 2010 - 02:51 AM
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.
#4
Posted 05 January 2010 - 04:27 AM
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...
#5
Posted 07 January 2010 - 03:59 AM
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?
#6
Posted 07 January 2010 - 06:23 AM
can you get me the HTML that its generating? (use firebug to get this)
#7
Posted 20 April 2010 - 10:44 PM
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
#8
Posted 21 April 2010 - 12:29 AM
try adding this to your custom css area in the theme admin
`form input {border-width:0px;}`
#9
Posted 01 May 2010 - 03:35 PM
Thanks! This fixed the problem!
#10
Posted 03 May 2010 - 11:24 AM
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.
#11
Posted 03 May 2010 - 05:04 PM
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.
#12
Posted 07 May 2010 - 05:37 AM
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
#13
Posted 10 May 2010 - 04:07 PM
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.
#14
Posted 29 November 2010 - 06:54 AM
Done & Solved!
thanks









