Recent content by Despair

  1. D

    Implemented New Posts Block

    Right now it seems pretty misleading though. It works on the new posts page because as said above the last message column is there. Remove that data and you have a similar situation. If it's kept as is, this is probably the easiest way to make things less confusing. Or rename the title to...
  2. D

    Report bad tags

    It would be nice if there was an approval queue for tags. I wouldn't even want bad tags to see the day of light. I doubt they would do that, so I guess this is the next best thing. :P
  3. D

    Benefits of using Mandrill for email delivery

    They seem to have an ongoing issue with gmail where emails can be delayed anywhere from 15 minutes to an hour? I read about it a while ago and heard they fixed it, but I'm still having this issue. Emails to hotmail for example still arrive instantly. Anyone still have this issue recently, or is...
  4. D

    XF 1.4 Displaying age - a nightmare..

    Most likely if anything is changed it will just be the ACP updated like mentioned above. :( You'd probably have to make a separate suggestion for what you require (if one was not already made).
  5. D

    XF 1.4 Displaying age - a nightmare..

    I think they used to be selectable independently, but later the "Show year of birth" was made selectable only if "Show day and month of birth" was selected, but was never reflected in the ACP. I do also prefer be able to just show the age though...
  6. D

    Quark

    Yes, that would be great. :) It was actually one of the main reasons for choosing this theme over UI.X Dark, otherwise I might have just saved some money and bought UI.X Dark instead! If the avatar is a problem, maybe add an option to move it over, but default it to off?
  7. D

    XF 1.4 Double Posts, MySQL Lock Timeout errors

    Definitely don't like double posts. Improving the JS would be nice on the client side, but also an option for server side would be great. You can use this in the meantime: https://xenforo.com/community/resources/sonnb-prevent-double-post.827/ Mostly for new posts and threads as it doesn't...
  8. D

    Quark

    Umm... so I only had a little bit of time today to finally play with Quark and noticed that the "Quark's Custom Postbit" setting no longer exists. Hopefully this isn't the case and I am missing a setting or something, albeit I see the relevant CSS is also missing from the templates, so it looks...
  9. D

    Antiquark

    Oh I think that is unrelated to my previous issues then. Taking another look I think it's intended. The flex CSS is used to make the columns of the same height for each row. You could remove the flex, but it actually may look worse. Wonder if extending the grey to the max height is possible.
  10. D

    Antiquark

    What node style are you using? I mentioned some similar issues here: https://xenforo.com/community/threads/quark-paid.38646/page-18#post-877138
  11. D

    Quark

    Heh, he didn't post enough code, the portion outputting that comment is literally right underneath what he posted. :P <xen:if hascontent="true"> <!-- <xen:contentcheck>{xen:escape {$uix_garbageUserBarContent}}</xen:contentcheck> --> <xen:set var="$uix_userBarNoContent">1</xen:set> </xen:if>
  12. D

    Quark

    I saw this the other day too, it's not just Quark and Antiquark though, also have it on UI.X. Looks like HTML from the moderator_bar template, so only mods see it?
  13. D

    UI.X

    Hmm, for me, it wasn't just PM's, same issue for new posts as well. The margin-right:0 fixes it, but the new indicator is placed inside the post instead of on the edge. So I used position:absolute and it turns out UI.X now comments out the .newIndicator span, which is the little triangle portion...
  14. D

    UI.X

    Yep, working for me. That val was for the background-image only, so if you use '' it would actually not work I believe. Since it'd be equivalent to saying background-image:'' whereas you'd want background-image:none. I just changed the code to check if the value is "none" then just use "none"...
  15. D

    UI.X

    This never got fixed. :p (about the ad styler trying to load an image named "none" if you did not have a background image set by default) I think it's as easy as replacing: val = "url("+val+")" With: val = (val == 'none' ? val : "url("+val+")"); In...
Top Bottom