Hello
How to remove grey line come with collections please. I cant remove it with CSS:(
What components are you using? Data Grid or New Table?
Thank you @Himaladin
I solved right now
with this code…btw the line come with table and list data
.liMoYR {
border-color: white
}
You should not use this selector “.liMoYR”. It is unstable because it is automatically generated by the browser.
Use the class name newTable and the following code:
.newTable table > tbody > tr {
border-color: white;
}
or
.newTable table > tbody > tr {
border: none;
}
Thank you!
is there a code to remove the custom collection border containing a switch?
Can you show your code?
that’s the stranger part. I’m not using a code for either of those custom collections so I don’t know why the borders behave differently.
Maybe it’s a problem on my computer, 3x freeze. I’ll check again after it’s normal.
I don’t think it’s a problem on your computer. I double-checked what you’re seeing and I see it too. On the home tab, the border is invisible but on the Gallery tab the border is visible.
It seems that now you don’t need css anymore if you choose background none in the custom collection configuration. This is the cause of your strangeness.
oh, that’s great! A result of today’s maintenance?
I’m not sure what the previous situation was.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.