Table Formatting

Does anyone know how to use table colors? I copied and pasted code directly from DreamWeaver into the html code section of the page, everything copies over and formats correctly except the cell colors. They remain white.

You'll have to provide an example.

Are you using embedded styles or css?

You can use HEX or RGB format:

.black-color1 {
    color: rgb(0,0,0);
}
.black-color2 {
    color: #000000;
}

Does anyone know how to use table colors? I copied and pasted code directly from DreamWeaver into the html code section of the page, everything copies over and formats correctly except the cell colors. They remain white.

It might be best to use CSS to do this. Using dreamweaver set up your table and apply different classes to the cells.

 

 

In your styles.less in cs cart add the class

.test {
background-color: #939;
}

.test2 {
background-color: #934;
}

Alan