0

In my website http://www.theprinterdepo.com, left bottom, I have the google wallet logo.

I rendered this logo with the code they provided, however I cant align it to the left. I tried style align left in the div they provided but it looks like the code is rewritten by them with the Javascript code.

<div id="googleCheckoutLogo"></div><script src='https://checkout.google.com/buttons/logos?merchant_id=909856425434813&loc=en&f=png' ></script>
techfoobar
  • 65,616
  • 14
  • 114
  • 135
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506

2 Answers2

2

Just add these lines to your CSS

#badge_container {
    padding-left: 0 !important;
}

The element (assumably placed by google) has a padding-left set. You don't want that. By using the !important keyword, this property will stick.

Tim S.
  • 13,597
  • 7
  • 46
  • 72
0

Are you able to target the CSS? if so you can remove the left padding from #badge_container {}

whitneyit
  • 1,226
  • 8
  • 17