XF 1.4 How to remove this lines?

You need to find the template:
node_list.css

Find:

.nodeList .categoryForumNodeInfo,
.nodeList .forumNodeInfo,
.nodeList .pageNodeInfo,
.nodeList .linkNodeInfo
{
@property "primaryContent";
background-color: transparent;
padding: 10px;
border-bottom: 1px solid transparent;
@property "/primaryContent";

border-top: 1px solid transparent;
border-bottom: 0;
padding: 0;

And change the red parts to transparent where it was previously @Primarylighter or whatever it was.

No idea if this is the official way, but it worked for me.
 
  • Like
Reactions: rdn
Solved.
Code:
/* Remove node border */
.nodeList .categoryForumNodeInfo,
.nodeList .forumNodeInfo,
.nodeList .pageNodeInfo,
.nodeList .linkNodeInfo
{ border-bottom: none !important; }
 
Top Bottom