XF 1.2 Link forum description wrapping?

Svoboda

Active member
Is there a way to make the description for a link forum span the entire row? Since there is no last post data, it just wraps and leaves that area blank. I'd like to see the description span the entire row so it doesn't create unsightly white space on the page.
 
Try something like:

Code:
.node_20 .node .nodeText {
margin-right: 10px !important;
}

Change the node ID to the actual value.

Untested so you may need to fiddle with the CSS a bit.
 
Try something like:

Code:
.node_20 .node .nodeText {
margin-right: 10px !important;
}

Change the node ID to the actual value.

Untested so you may need to fiddle with the CSS a bit.

Thanks. I tried this and was unable to get it to work. When I inspect element within Chrome, it doesn't show this CSS. It still just shows the default CSS.
 
Top Bottom