Custom CSS Stylesheet not working 1.2.6 – Want to change justification and column sizes

ThemeBurn SupportForumsOpenCart ThemesPavilion OpenCart ThemeCustom CSS Stylesheet not working 1.2.6 – Want to change justification and column sizes

This topic has been marked as not resolved.

I have read and tried several different ideas of how to change the size, justification of the product specification area.

Can’t seem to find the default CSS for this area.

I tried using

.tb_product_attributes td:first-child {
  width: 200px;
  text-align: left;

in the custom Stylesheet, but it does not change the look.

Thanks
Jimmy

November 9, 2015 at 10:11 pm #43704

I did some more digging tonight and found that the table name is different. The code below in CSS Custom works.


.tb_table_1 {
    table-layout: Auto;
}
.tb_table_1 td:nth-child(1)  {
        width: 20%;
        text-align: left;
}
.tb_table_1 td:nth-child(2) {
        text-align: left;
        width: auto;
}

The table-layout: Auto was required to let the table columns change sizes.

November 10, 2015 at 4:21 am #43707

Marking this as “resolved”.

BR,
ThemeBurn team

November 11, 2015 at 5:48 pm #43721
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.