Viewing 7 replies - 1 through 7 (of 7 total)
  • You may be able to make it larger using css.

    Thread Starter MisterEddie

    (@mistereddie)

    Thanks for the point in that direction, but can you be a little more specific? Thanks

    Unless paypal is offering a way for you to use a larger image, you’re going to have to use css to make the image larger.

    Something like wrapping that image in a div and then target it.

    <div id="custom-paypal-size">
    <img src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" alt=" alt="" />
    </div>

    The css:

    #custom-paypal-size img {
    width: 200px;
    height: 75px;
    }

    This code is untested so you may need to tweak the width and height.

    Thread Starter MisterEddie

    (@mistereddie)

    My God, I have no idea what you’re talking about or where to put that stuff. I tried looking up adding css on WP, and stuff like PHP and other unknowns came up and I am super lost. Is this all really as complicated as I think it is, or is there some secret page that breaks all this stuff down?

    Yeah, if Paypal does not offer a way to show a larger button by you using a link like the one you originally provided then you would have to get into some code. If that is beyond you, you can always hire someone.

    Thread Starter MisterEddie

    (@mistereddie)

    Part of me wants to learn how to do some more stuff, as long as it would be worth it. Do you recommend any sites for beginners trying to learn these things?

    The codex is a great place to start: http://codex.wordpress.org/Main_Page

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Resizing image from link’ is closed to new replies.