The widget is highly customizable. You can adjust and adapt the widget looks to fit your designer needs by applying custom CSS styling.
Log in to your admin panel
and click on
"Widgets".
Select and click
edit
for the widget you want to customize.
Place your CSS customizations in the
Custom Styling for the Button
field.
All buttons get the default styling applied to them. You can download the base style from the link provided on the settings page.
By entering your own CSS into the field, custom properties will override the default properties.
To customize the button, use the
#button
selector.
(What are css selectors?)
There are no limitation on CSS properties. You can apply any kind of styling as long it is supported by the browser. (See CSS References)
#button { background-color: blue; }
Bottom left:
#button { right: auto; left: 30px; }
Top right:
#button { bottom: auto; top: 30px; }
Top left:
#button { bottom: auto; right: auto; left: 30px; top: 30px; }
#button { border-radius: 2px; }