T. Almroth

Results 50 comments of T. Almroth

During upgrade select Standard CSS and your template will be adjusted for that. This is not a bug. You most likely selected LESS versions for your upgrade, or skipped the...

I am aware of this. To be able to bind them to the input field they would have to go after it. ``` input[name="field"] + label { ... } ```...

This is one way of doing it. But as label is natively an inline element, it feels wrong to use it as a block. ``` Company ```

It works for any input, select or textarea. I want to avoid having to set ids for each and every field and label.

Here is a universal way using javascript I came up with. Not tested, may contain an error or two. ``` var fieldIndex = 0; $(':input').each(function(){ var $form_group = $(this).closest('.form-group'), $label...

What sold out status is set for the product? One that is [x] orderable?

+1 Looking back at the whitespace before insert position, and prepending it to each and every following linebreak should solve the problem.

I wonder the same. I assume it was meant to show some bouncing back animation, but it's not working.

Is this related to PHP GD or Imagick library?

With GD you can try something like this: ``` // Get the EXIF data of the image $exif = exif_read_data($filename); // Check if orientation data exists if (isset($exif['Orientation'])) { $orientation...