2012-11-20 23 views
0

我工作在WordPress的一些造型與WP電子商務並在結賬頁面TD寬度有其表頭都面臨左對齊,而不是成爲寬度的表每個列。當我嘗試沒有CSS的HTML代碼時,它工作得很好,但是有太多的CSS正在被應用,我無法弄清楚究竟是什麼導致了它。匹配表日在WordPress

請參閱以下問題的HTML代碼。

如何找到元兇有什麼想法?

<table class="checkout_cart"> 
    <tbody> 
     <tr class="header"> 
      <th colspan="2">Product</th> 
      <th>Quantity</th> 
      <th>Price</th> 
      <th>Total</th> 
      <th>&nbsp;</th> 
     </tr> 
     <tr class="product_row product_row_0 alt"> 
      <td class="firstcol wpsc_product_image wpsc_product_image_0"> <img src="31x31.jpg" alt="Spreading the Light" title="Light" class="product_image"> </td> 
      <td class="wpsc_product_name wpsc_product_name_0"> <a href="http://hailefinephotography.com/products-page/inner-aperture-fine-art-note-cards/spreading-the-light/">Spreading the Light</a> </td> 
      <td class="wpsc_product_quantity wpsc_product_quantity_0"> 
       <form action="/store/checkout/" method="post" class="adjustform qty"> 
        <input type="text" name="quantity" size="2" value="1"> 
        <input type="hidden" name="key" value="0"> 
        <input type="hidden" name="wpsc_update_quantity" value="true"> 
        <input type="submit" value="Update" name="submit"> 
       </form> 
      </td> 
      <td><span class="pricedisplay">$5.00</span></td> 
      <td class="wpsc_product_price wpsc_product_price_0"><span class="pricedisplay"><span class="pricedisplay">$5.00</span></span></td> 
      <td class="wpsc_product_remove wpsc_product_remove_0"> 
       <form action="/store/checkout/" method="post" class="adjustform remove"> 
        <input type="hidden" name="quantity" value="0"> 
        <input type="hidden" name="key" value="0"> 
        <input type="hidden" name="wpsc_update_quantity" value="true"> 
        <input type="submit" value="Remove" name="submit"> 
       </form> 
      </td> 
     </tr> 
    </tbody> 
</table> 
+0

硬而不造型 – hunter

+0

說,但你有沒有包括CSS 6個colums - 所以任何人都應該是怎樣找到原因? –

+0

如果CSS出現問題,那麼CSS就是我們需要看到的 – lifetimes

回答

1

你有5頭(次),但低於(TD)

+0

第一個標題有colspan =「2」 –

+1

你是對的。錯過了。但在這種情況下,我同意獵人,Diodeus和其他人..沒有CSS沒有其他我們可以確定.. –

+1

有一件事我會嘗試解決在任何情況下。是在html中的元素上應用內聯樣式。內聯樣式會覆蓋應用的樣式,使您可以輕鬆找出哪些元素將事物搞亂。 (當然,你的第一個開始就是使用你的瀏覽器檢查元素的功能。) –