XF 1.3 Node

j4ke

New member
Any idea why the default icons still show up when adding custom ones?
Using ******* custom Node!

2NKitvr.png
 
If you want, post your forum url and i'll show you the css to do the trick, I had the same problem last year on my forum. Or if you know a bit about css modification, juste inspect the element on the icon and add a diplay: none; on it, I guess that it's the following, but not sure:
Code:
.node .nodeIcon {
         display: none;
}
(On EXTRA.css)
 
If you want, post your forum url and i'll show you the css to do the trick, I had the same problem last year on my forum. Or if you know a bit about css modification, juste inspect the element on the icon and add a diplay: none; on it, I guess that it's the following, but not sure:
Code:
.node .nodeIcon {
         display: none;
}
(On EXTRA.css)
We managed to fix it, was something in Styles that just needed disabling, thanks anyway!
 
Top Bottom