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)
2019 年 8 月 1 日午後 1: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)
2019 年 8 月 1 日午後 2: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
bifterx
(rob Dennis)
2019 年 8 月 1 日午後 2:24
6
super job thanks very much!
「いいね!」 1
Johani
(Joe)
クローズされました:
2019 年 8 月 2 日午前 10:00
7
This topic was automatically closed after 19 hours. New replies are no longer allowed.