Very nice theme! Would it be possible to get some presets for more neutral, modern, web2.0 looking colors?
And how do you fix this issue?
Thank you kindly!
That issue so to speak occurs on the default theme as well. If people want I can look into getting that to display at the bottom of the post altogether?
What a great style with a lot of settings! I'm really impressed by your work. Just some questions:
Thank you very much, glad you like it!!
is it possible to disable the login / register overlay and use a normal login / register page instead? (The overlay seems to lead to problems for users using adblocker plugins in their browser)
Yes as
@Ridemonkey mentioned, there is a setting to disable the modal and use a sliding drawer style login form. But if you want it to open in the actual login page some templates need to be modified. That said, I believe that this should be a setting so we've added it to the list!
is it possible to display the thread title of the last post in the forum home, even on small smartphone displays?
XenForo default theme removes the title of the last post. Its possible but requires some extra code. To get it perfect you'd need to edit a few templates so this is something we can do custom for you if you want, PM me.
Otherwise, this code will just get the link to show up:
Code:
@media (max-width: @maxResponsiveMediumWidth)
.Responsive .node .nodeLastPost .lastThreadTitle, .Responsive .node .nodeLastPost .lastThreadUser {
display: block;
}
Add this to extra.css
is it possible to change the width after witch the username gets shortened in the userbar?
Yes its possible. There are 3 ways:
- width of the link
- font size
- hide/showing the text
We have a setting for the hide/showing of the text, the last option there. If you want the other 2 you'll need custom css, let me know and I can take a look.
But as for that last setting you essentially get to choose the size of the viewport to which that username hides entirely. If you go to Style Properties > UI.X Navigation > Viewport Width to Hide Account Tab Username, you can change this value to whatever you want. By default it should be @maxResponsiveNarrowWidth (480px by default). If you want it to always be gone, set it to 100%. If you want it to always show, set it to 0.