Hi. I plan on using topic tiles, which eliminates standard topic list column titling; however, it does not remove the horizontal line associated with those topics. See images below…
Light theme meta site:
My in-progress site:
How do I get rid of that line? Thank you in advance!
1 me gusta
that border is on the <tbody>
element, so to remove it with CSS:
.topic-list tbody {
border-top: none;
}
6 Me gusta
Woo hoo! That worked like a charm. Thank you!
1 me gusta
bifterx
(rob Dennis)
1 Agosto, 2019 13:33
4
just as an extension to this question, if I wanted change the colour of the top bar and the colours of the intermediate dividers, would this be done in the same place?
thanks
Johani
(Joe)
1 Agosto, 2019 14:06
5
If you’re referring to these
then what you’d need is to add is
.topic-list tbody {
border-top-color: red; // change "red" to the desired border color
}
and that would create this effect
For the intermediate dividers you’d need to add
.topic-list tr {
border-bottom-color: red; // change "red" to the desired border color
}
and that would create this effect
So all of those put together would look like this
.topic-list {
tbody {
border-top-color: red;
tr {
border-bottom-color: red;
}
}
}
4 Me gusta
bifterx
(rob Dennis)
1 Agosto, 2019 14:24
6
super job thanks very much!
1 me gusta
Johani
(Joe)
Cerrado
2 Agosto, 2019 10:00
7
This topic was automatically closed after 19 hours. New replies are no longer allowed.