Extra Node Information by Waindigo [Deleted]

I have a test install of 1.2, When I tried to upload the xml for this add-on I got a 'No Data Received' error. This error is now on every page of my test install (ACP and Forums).

I cant even uninstall anything

Any idea how this happened?
 
It's definitely this addon which is causing the site to fail. When I disable this addon it's fine when I enable it the test site disappears. Would you mind having a look at it for me?
Please PM me with details of how I can access your site.
 
This is very nice. I was trying to work with class but my CSS lack of knowledge kills me, how to add that simple dark layer to the node text (title, lastpost...)?
There must be something we can point. :)
 
This is just off the top of my head, but if you add a class such as 'myNode' to one or more of your nodes, you can then change the icon by adding the following to your EXTRA.CSS:
Code:
.myNode .unread .nodeIcon {
    background-image: url('http://mywebsite/unread-node-icon.png');
}
.myNode .nodeIcon {
    background-image: url('http://mywebsite/read-node-icon.png');
}

Edit: or just add the first 3 lines and include the read icon URL as the background in the options for the node.
 
This is just off the top of my head, but if you add a class such as 'myNode' to one or more of your nodes, you can then change the icon by adding the following to your EXTRA.CSS:
Code:
.myNode .unread .nodeIcon {
    background-image: url('http://mywebsite/unread-node-icon.png');
}
.myNode .nodeIcon {
    background-image: url('http://mywebsite/read-node-icon.png');
}

Edit: or just add the first 3 lines and include the read icon URL as the background in the options for the node.
Thank you I'll give it a try late today
 
Top Bottom