The text field attributes appear to be "broken" in certain fairly normal conditions.

In the catalog listing text fields are shrunk to 4 or 5 characters making it impossible to type in. Then in full product node view with a product graphic the text fields are too long and the beginnings get cut off. I've attached two screen shots showing each issues....

Comments

Chad_Dupuis’s picture

Oh and this is in firefox 3.5 on ubuntu. In opera on ubuntu the full node listing looks ok (i.e. the text fields shorten) but the attributes on the catalog list are still shortened.

jeremycaldwell’s picture

Try adding this bit of CSS to your stylesheet to make the input field a specific width and hopefully it will align correctly.

.attribute input.form-text {
  width: 150px;
}
jeremycaldwell’s picture

Assigned: Unassigned » jeremycaldwell
Chad_Dupuis’s picture

Thanks for the reply. That was a start, but I'm still having problems. That worked in the item listing, but not in the catalog display (so I added something for that). But, this also extends the quantity field which looks unprofessional. I can get the quantity field to shorten with the code below, but on the catalog pages the quantity fields are enumerated so you would need a setting for each quantity field which could be hundreds of items and I don't see a way to get a shorter field item to apply just to the qty field as they are all under the same class...

.attribute input.form-text {
width: 200px;
}

.category-grid-products .form-item .form-text {
margin:0;
width:200px;
}
.edit-qty {
margin:0;
width:25px;
}

stephthegeek’s picture

Status: Active » Fixed

We just committed a fix to the new version of Fusion itself that specifically targets the quantity field (at least in everything but IE6) so other fields aren't shrunk. Unfortunately the markup from Ubercart here makes it difficult to target, but this should improve the situation.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.