• Resolved nephylim

    (@nephylim)


    Hi again,

    the second question would be if there is a way to exchange the logo picture in the checkout to only show the paypal logo. I have credit card paymenst via stripe and only want to show the paypal logo terefore as you can see in the image:

    View post on imgur.com

    Your help is much appreciated. Have a great day!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author WebToffee

    (@webtoffee)

    Hi @nephylim,

    You may please add the below code snippet to your active theme’s style.css
    You can replace the image URL with your custom URL or you can host the image in your own site and give its URL.

           label[for="payment_method_eh_paypal_express"] {
               position: relative;
           }
           label[for="payment_method_eh_paypal_express"] img {
               display: none;
           }
           label[for="payment_method_eh_paypal_express"]:after {
               content: "";
               background-image: url(https://1000logos.net/wp-content/uploads/2017/05/symbol-Paypal-500x173.png);
               background-repeat: no-repeat;
               position: absolute;
               display: block;
               height: 30px;
               width: 30px;
               background-size: 100%;
           }

    Leave us a review if you like the plugin and support, Thanks!

    Thread Starter nephylim

    (@nephylim)

    Hey

    wow, thx for the superfast answer. I added the code and this happenend:

    A little small dont you think;-)

    View post on imgur.com

    Plugin Author WebToffee

    (@webtoffee)

    Hi @nephylim,

    You can change the height and width of the image in the above given code itself.

    Thread Starter nephylim

    (@nephylim)

    thx if you delete the line with

    display: block;

    it displays correctly

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Only show plugin Logo’ is closed to new replies.