Hi,
First, thanks for a great module. I'm only testing but looks to have good potential.

On certain browsers (Firefox and Safari) The spread form fields overlap my templates' right edge. I have the block on the right side of a 970px fixed width template. This applies on both WinXP and Ubuntu Linux platforms.

Can you tell me where I can find the PHP/html file to adjust the textbox widths. or provide a module fix.

Comments

jchatard’s picture

Hi Ascenti0n,

You can easily customize the look and feel of the spread form by creating your own customized CSS rules from your theme.

Actually Spread comes with a minimal CSS file which contains the following code :

#spread-thank-you {
  display: none;
}
form#spread-form .form-item label {
  display: block; 
}

So you can easily set some CSS rules from your theme with this, as an example :

form#spread-form input[type=text] {
  width: 60px
}

This should work quite well, but you can do some firebug inspection to see what the actual selector you have to use.

Hope it helps!
Jérémy

jchatard’s picture

Category: bug » support

Just changing issue category this is a support request, not a bug.
Jérémy

Brian Tastic’s picture

Sorry, as I was not sure which category to chose, due to form widths display OK on browser(s) in one platform and extend past tamplate widths on a different platform.

thanks for your help.

jchatard’s picture

Status: Active » Closed (fixed)