This website is obsolete. Please go to my new site at wppatch.com for any queries.

Old customers can also contact via new site for their queries.

Reply To: max width for simple aweber optin widget

Contact Support Simple Aweber Optin Widget max width for simple aweber optin widget Reply To: max width for simple aweber optin widget

#1666
Abu
Keymaster

Yes you can do that using CSS.

Use the class .twb_widget_wrapper for that.

For example, if you want to limit the width to 250px, your code will look like following:

.twb_widget_wrapper {
  width: 250px;
  margin-left: auto; /* align center from left */
  margin-right: auto; /* align center from right */
}

Should be pretty easy.