Translating "Log in with Facebook"
For campaigns serving users who don’t speak English, you can translate the default Log in with Facebook button text. Here's how:
- Click on your Form Widget, then click Edit Form.
- Click on the Login field you want to edit on the right.
- Enter the new text in the Label field on the left.
- Click the blue Save Changes button.
Customizing the CSS
You can customize the CSS for mobile browsers by scoping your selectors using body.mobile (scoping is geek-speak for "Put body.mobile in front of any selectors that you want to apply to only mobile browsers").
For example, if you had a background image applied to #wrapper, but wanted it removed for the mobile version, you could enter this Custom CSS:
body.mobile #wrapper{
background:none;
}