Hi, I am trying to make a pizza website.

Here is the link for the pizza listing.


I want my table to have 3 colums.

Product Name ----------------Price------Add to cart.

In my FireFox developer plugin, I manage to see how the table is built in HTML. I can customize that HTML to style the table in my way.

However I don't know where in my actual files I can access that html/php page.

I have looked in the following files, tpl_tabular_display.php, product-listing.php

In my CSS I managed to change the colors of the table cells,

Code:
.tabTable td.productListing-data
{

background-color: #CC2345;
text-align: left;
height: 100px;
 }
The colors are applied, but the Height never seems to change? Is it because of the Add to cart image that expands the cell height?

I hope my question makes sense. Please I need help with this.