XF 1.5 Where do I find the control for text background color?

wardsweb

Member
Where do I find under Style the section to replace the background color for the node list? It is presently white and I need to darken it. Our members are complaining of eye strain with the white background.

textbackground.jpg
 
Where do I find under Style the section to replace the background color for the node list? It is presently white and I need to darken it. Our members are complaining of eye strain with the white background.

textbackground.jpg

A few ways of doing it, that node background are controlled via Style Properties -> Building blocks -> primaryContent, although this effects a lot of things throughout the style.

To target the node list specifically you could do something like this in extra.css:

Code:
.forum_list .nodeList .nodeList .nodeInfo {
background-color: transparent;
}
.forum_list .nodeList .node.level_1 {
background-color: #f2f2f2;
}

Which would result in this:

Screenshot_6.webp

Of course adjust to your liking :)
 
Top Bottom