XF 1.5 How to fix this?

Travis

Active member
Hi,

I've asked the developers of this theme with no response. I have a couple of issues with my theme:
Screen Shot 2016-07-25 at 9.42.18 AM.webp
Screen Shot 2016-07-25 at 9.42.30 AM.webp

As you can see, I have some page background sneaking in. Its not on every node though! Any ideas for fixing it?
 
the link node is using padding : 0px due to which this issues is there,

try adding this to your extra.css

Code:
.nodeInfo.linkNodeInfo {
    padding: 10px !important;
}
 
Top Bottom