D
Deleted member 91401
Guest
So I've created some custom fontawesome icons with fontello here's the CSS im trying to use in extra.css to get the node icons to work;
I'm aware this is wrong and I should be instead applying this tag;
to replace the node icons the issue is I can't find where the HTML for each individual node icon would be can anyone help me out?
Code:
/* FONT AWESOME NODE ICONS */
@font-face
{
font-family: 'FontAwesome';
src: url('./fonts/slick.eot');
src: url('./fonts/slick.ttf') format("truetype"),
url('./fonts/slick.woff') format('woff'),
url('./fonts/slick.eot?#iefix') format('embedded-opentype'),
url('./fonts/slick.svg#fontawesome-webfont') format('svg');
font-style: normal;
font-weight: normal;
}
.node.node_6 .forumNodeInfo .nodeIcon:after, .node.node_6 .categoryForumNodeInfo .nodeIcon:after
{
font-family: "FontAwesome";
font-size: 34px;
content: "icon-lightbulb-alt”;
padding: 4px;
}
.node.node_44 .forumNodeInfo.unread .nodeIcon:after, .node.node_4 .categoryForumNodeInfo.unread .nodeIcon:after
{
font-family: "FontAwesome";
font-size: 34px;
content: "icon-megaphone";
padding: 4px;
}
/* FONT AWESOME NODE ICONS */
I'm aware this is wrong and I should be instead applying this tag;
Code:
<i class="fa icon-megaphone"></i>
to replace the node icons the issue is I can't find where the HTML for each individual node icon would be can anyone help me out?