I am hoping this is just me missing something really obvious here as this should be really simple! I am trying to remove the border from my fragments but I want it to remain on products. I have located it here in the stylesheet.
.product-list td, .fragment-list td, .marketing-list td {
width: 30%;
border: 1px solid <actinic:variable name="Palette3" />;
padding: 10px;
margin: 0;
vertical-align: top;
}
I thought I could simply change it to sort out the issue to the following.
.product-list td, .marketing-list td {
width: 30%;
border: 1px solid <actinic:variable name="Palette3" />;
padding: 10px;
margin: 0;
vertical-align: top;
}
.fragment-list td {
width: 30%;
padding: 10px;
margin: 0;
vertical-align: top;
}
However this removes the border on both my fragments and products, I can't seem to locate the div id in the layouts. If anyone has an idea of where I am going wrong it would be greatly appreciated! Thanks.
.product-list td, .fragment-list td, .marketing-list td {
width: 30%;
border: 1px solid <actinic:variable name="Palette3" />;
padding: 10px;
margin: 0;
vertical-align: top;
}
I thought I could simply change it to sort out the issue to the following.
.product-list td, .marketing-list td {
width: 30%;
border: 1px solid <actinic:variable name="Palette3" />;
padding: 10px;
margin: 0;
vertical-align: top;
}
.fragment-list td {
width: 30%;
padding: 10px;
margin: 0;
vertical-align: top;
}
However this removes the border on both my fragments and products, I can't seem to locate the div id in the layouts. If anyone has an idea of where I am going wrong it would be greatly appreciated! Thanks.
Comment