On my Checkout page, I am attempting to align the Paypal "quick check-out" button to the left. Through Firebug, I identified the CSS section that is currently set to center. By inputting "left," I was able to move it to the desired position. Subsequently, I copied the rule into the custom CSS field on my Wordpress site.
#zoid-paypal-button-1a79a61bc2.paypal-button-size-responsive {
text-align: left;}
Unfortunately, the initial portion of the code isn't permanent, causing it to revert back to the centered alignment upon refreshing the page. How can I ensure that this change remains in place?