xF 2.0 Theme

xF 2.0 Theme 1.5.24

No permission to download
This is cool. Thanks for putting the work in!

How do I make the sidebar wider? I've changed the 250 to 300 in the style properties and it seems to just stay the same.
 
This is cool. Thanks for putting the work in!

How do I make the sidebar wider? I've changed the 250 to 300 in the style properties and it seems to just stay the same.
I checked it now and it is working in demo please check if you're using any add-on relative to sidebar
 
Tested version 1.6, and changed .PageNav .scrollable { height: 28px; } (before 18px) now all looks great!

Fixed by changing in page_nav.css template:
height: 18px; /* only needs to be approximate */

to
height: 28px; /* only needs to be approximate */

Pagination shows properly now!
 
Anyone know how to remove the node icons (talk balloons thingy)? I have added the ones I want to use for read and unread but the default ones show on top of the new ones!
 
Anyone know how to remove the node icons (talk balloons thingy)? I have added the ones I want to use for read and unread but the default ones show on top of the new ones!

in the template "node_list.css" remove this code:

Code:
.node.node .forumNodeInfo .nodeIcon:after, .node.node .categoryForumNodeInfo .nodeIcon:after
{
    font-size: 32px;
    font-family: FontAwesome;
    color: #d7edfc;
    line-height: 1.125;
    content:  "\f086";
    text-shadow: 1px 1px 0.5px rgba(15, 123, 197, 0.5);
}
.node.node .forumNodeInfo.unread .nodeIcon:after, .node.node .categoryForumNodeInfo.unread .nodeIcon:after
{
    font-size: 32px;
    font-family: FontAwesome;
    color: #f9d9b0;
    line-height: 1.125;
    content:  "\f086";
    text-shadow: 1px 1px 0.5px rgba(158, 94, 12, 0.5);
}

.node.node .pageNodeInfo .nodeIcon:after
{
    font-size: 32px;
    font-family: FontAwesome;
    line-height: 1.125;
    color: #d7edfc;
    text-shadow: 1px 1px 0.5px rgba(15, 123, 197, 0.5);
    content:  "\f0f6";
}
.node.node .linkNodeInfo .nodeIcon:after
{
    font-size: 32px;
    font-family: FontAwesome;
    line-height: 1.125;
    color: #d7edfc;
    text-shadow: 1px 1px 0.5px rgba(15, 123, 197, 0.5);
    content: "\f0c1";
}
 
Top Bottom