Hi,
I have two questions:
1) I want to change the icons in the side bar (I use widgets framework). How do I do this? See attachment.
2) When I look at pictures in posts some of the buttons are missing. Is this something I can fix by using the color palette? How? See attachment.
Thank you. Great theme
View attachment 68471 View attachment 68472
Hi

1. Due to the inconsistent nature of sidebar markup it is a bit difficult for me to explain except on a per plugin basis. So on my demo, I've enabled the widget framework. Here is a screenshot of the area in question; the icon.

Note the markup is different than XenForo's ever so slightly but enough to where (I) couldn't find a way to make it work with one line of code. So this will be different if you do not have the widget frame work installed:
Code:
.section .secondaryContent.widget.WidgetFramework_WidgetRenderer_Stats h3:before {
content: '\f080';
}
1. Find an icon that you want
2. Note its character unicode value (the thing in parentheses on the link in point 1; the fontawesome cheat sheet
3. From that unicode value, strip out some stuff. So for example, if I wanted fa-heart, the unicode value for that is: . So what I want to do is just note the f004; or just everything after the f character, really.
4. Find the class of the block you want. Do so by inspecting or viewing the source on your webpage. You'll have to see the unique class on each block, and generally they will end in blahblah_users or blahblah_donate or something. Note that above I was selecting the stats block, or as the widget framework names it: WidgetFramework_WidgetRenderer_Stats
5. Now fill in the blanks:
Rich (BB code):
.section .secondaryContent.widget.theClassFromPoint4 h3:before {
content: '\f080';
}
The green is the class you found from the source code, the red is the stripped out unicode from the icon you wanted from FontAwesome. If you want to use a different icon, you can just replace this with a background image to that icon or a font-family + new unicode and I think it should work fine. but by default I have the font-family of FontAwesome here.
6. Add the code from point 5 you created to somewhere generic, such as extra.css, which is where I'd recommend adding it.
Should be good!
I've had a ticket for days with no response.
Trying to get the theme to work with forum tabs. Worked fine with my previous styles, but stopped working with this one. When you click on the tabs, nothing shows up except for the top one, rest are blank.
http://xenforo.com/community/resources/forum-list-tabs-by-waindigo.1476/
Sorry for the delay in response had a flu all weekend. As you can see our collapse function doesn't seem to like the waindigo tabs, so I will take a look and try and figure out why when I get a chance.