Forum Discussion
_anomDiebolt_
7 years agoQrew Elite
I don't know exactly what you did because you did not post any code but I can give you an understanding of why these white gaps appear. Using CSS QuickBase uses white borders on the <table> elements used to layout a section. This is a bit unusual and can be difficult to detect as most of the time table cell borders are black or some other visible color.
So you have to set the background-color on the table and the border-color for the cells:
So you have to set the background-color on the table and the border-color for the cells:
$("table.formSection").css("background-color", "yellow");
$("table.formSection tr td").css("border-color", "yellow");
SalesInfo
7 years agoQrew Assistant Captain
_anom the ultimate (Dan Diebolt),
How do I figure out what <selector> for the section that I want to be customize is?
Thanks!
in this case, is <selector> tab_t30?
How do I figure out what <selector> for the section that I want to be customize is?
Thanks!
in this case, is <selector> tab_t30?