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 лайк
that border is on the <tbody> element, so to remove it with CSS:
.topic-list tbody {
border-top: none;
}
6 лайков
Woo hoo! That worked like a charm. Thank you!
1 лайк
bifterx
(rob Dennis)
01.Август.2019 13:33:46
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)
01.Август.2019 14:06:27
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 лайка
bifterx
(rob Dennis)
01.Август.2019 14:24:45
6
super job thanks very much!
1 лайк
Johani
(Joe)
Закрыл(а) тему
02.Август.2019 10:00:03
7
This topic was automatically closed after 19 hours. New replies are no longer allowed.