rohatcengizhanbucak
Member
https://xenforo.com/community/threads/custom-prefixes.222693/#post-1688837
How can I make custom CSS assignment in Light and Dark theme modes? I searched a lot but I couldn't find a solution. For example, I want to make the colours of the <h2 class=‘block-header’> element in the forum white in the light theme. However, when it switches to dark mode, it continues to appear white. How can I fix this?
extra.less
How can I make custom CSS assignment in Light and Dark theme modes? I searched a lot but I couldn't find a solution. For example, I want to make the colours of the <h2 class=‘block-header’> element in the forum white in the light theme. However, when it switches to dark mode, it continues to appear white. How can I fix this?
extra.less
Code:
.block-header {
background: #fff;
border-bottom: 1px solid #dde2ec;
color: #495057;
}