How did you stretch our the boxes for the sign up form in the widget?
#wysija-2 input[type="submit"] {
width: 100%;
/* also you may need this to make your button behave like a button */
cursor: pointer;
}
Can I incorporate this button on my sign-up form plugin too?
Sure, amend this;
input[type="submit"] {
font-size: 14px;
color: #ffffff;
background: -moz-linear-gradient(
top,
#00bf00 0%,
#008500);
background: -webkit-gradient(
linear, left top, left bottom,
from(#00bf00),
to(#008500));
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #000000;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
text-shadow:
0px 1px 0px rgba(000,000,000,0.7),
0px 1px 0px rgba(255,255,255,0.3);
}
To this;
.mabstyle-default.magic-action-box form input[type="submit"],
input[type="submit"] {
font-size: 14px;
color: #ffffff;
background: -moz-linear-gradient(
top,
#00bf00 0%,
#008500);
background: -webkit-gradient(
linear, left top, left bottom,
from(#00bf00),
to(#008500));
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #000000;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,1);
text-shadow:
0px 1px 0px rgba(000,000,000,0.7),
0px 1px 0px rgba(255,255,255,0.3);
}