The table on the /cart page (which contains remove, products, amount, qty, total) has, as the last line, a subtotal row. This row has a colspan of only 5, when it should be 6. Adding the "amount" column to the other rows increased the columns from 5 to 6, but it appears the colspan of that final subtotal row was not increased. This makes the Subtotal amount not align with the other amounts.

Comments

bradwade’s picture

StatusFileSize
new39.14 KB

Here's a screenshot to illustrate the above problem. (It's an attached .png file.)

bradwade’s picture

Version: 5.x-1.x-dev » 5.x-1.0

I upgraded today (11/17/2008) to 5.x-1.0 and the problem still persists.

By the way, thanks greenskin (and all others involved) for the recent round of updates. You work is much appreciated.

-Brad

greenskin’s picture

Status: Active » Closed (won't fix)

I remember fighting with this issue and was not able to come up with a good solid solution at the time. I wish I had more time to investigate this annoying little issue but alas I don't. A quick fix is to throw the following into a custom javascript file that gets loaded on path 'cart':

if (Drupal.jsEnabled) {
  $(document).ready(function() {
    $("#cart-form-products td.subtotal").attr('colspan', 6);
  });
}