• The site has now migrated to Xenforo 2. If you see any issues with the forum operation, please post them in the feedback thread.
  • Due to issues with external spam filters, QQ is currently unable to send any mail to Microsoft E-mail addresses. This includes any account at live.com, hotmail.com or msn.com. Signing up to the forum with one of these addresses will result in your verification E-mail never arriving. For best results, please use a different E-mail provider for your QQ address.
  • For prospective new members, a word of warning: don't use common names like Dennis, Simon, or Kenny if you decide to create an account. Spammers have used them all before you and gotten those names flagged in the anti-spam databases. Your account registration will be rejected because of it.
  • Since it has happened MULTIPLE times now, I want to be very clear about this. You do not get to abandon an account and create a new one. You do not get to pass an account to someone else and create a new one. If you do so anyway, you will be banned for creating sockpuppets.
  • Due to the actions of particularly persistent spammers and trolls, we will be banning disposable email addresses from today onward.
  • The rules regarding NSFW links have been updated. See here for details.

XF2 transition feedback

The common denominator between them seems to be that neither of them ever posted a single time anywhere else on the website, only through our shared PMs. Does anyone know anything more about this?

So, they have 0 posts at all? Because...

I can't start Private Messages/Conversations!

Due to recent issues with spam, we have limited the permissions of New Users (users without any 'approved' posts, see below). Make a post somewhere, possibly the Introduction Thread. Once the post is approved, the system will change your permissions (it does it every short while, so you might need to wait a little bit).
 
So you know how SB, SV and QQ have these dynamic margins that allow the main part of the forum to stay the same size regardless of how big or small your screen is, as that's necessary to preserve formatting and make stories readable?

loxq7p.png


0r7g75.png

Well QQ used to have them too, because we're also a creative writing forum, and having each line of your story be two feet wide is not great for readability. As it currently stands, QQ expands to fit my window, which is a pain and means that the individual lines of a story are like, two feet long. Entire paragraphs are just a single line in some cases. Any chance of the dynamic margins coming back?

kgcvzy.png

Please?

I'm getting a crick in my neck trying to read smut. :'(
 
Last edited:
While I'm not sure if it's what you're looking for, there IS an option, right next to "Style Chooser", "Change Width", that allows you to change the margin size.

It's on the bottom left of the page, top left of the footer.

Thank you so much. My vertebrae cry out with joy.

I have no idea why this isn't/wasn't the default for me, but it instantly fixes the issue.
 
Last edited:
Clicking on a thread seems to drop me right in the middle of the thread instead of the start.
 
Beware, it does reset. So, you know, that has to be hit fairly frequently if you want the page width to remain as what you set it.
Okay, thanks for letting me know. So it's still an issue that needs fixing either way.

While it's never reset for me, I also like having no margins at all.

Though honestly, there should instead be a setting in preferences to set your preferred margin (Margin, No Margin, Dynamic Margin), imo.
 
Anyone here know that we can set profile banners now!? Man, I hope we got more profile costumizations in the future! 👍👏🥰
 
While it's never reset for me, I also like having no margins at all.

Though honestly, there should instead be a setting in preferences to set your preferred margin (Margin, No Margin, Dynamic Margin), imo.

I can confirm that it resets. I haven't deleted my cookies today and I'm already back to wideQQ. Thankfully the fix is just a click away, but still annoying.
 
So you know how SB, SV and QQ have these dynamic margins that allow the main part of the forum to stay the same size regardless of how big or small your screen is, as that's necessary to preserve formatting and make stories readable?
Trade you. I keep getting "narrow" QQ. It's not that narrow, but I still prefer it stretching across my screen.
If you have Stylus, or some other extension, I have been using this style for margin to fill my screen:
Code:
div.p-body-inner
{
    max-width:1366px!important
}
Just apply to domain questionablequesting.com and change the number to whatever you want. Works for SB too as margin there is messed up, or at least was last I checked.
 
The table option to cell merge is gone from the default Rich Text Editor...
 
I've turned off the media auto-embed for the moment. This means the only way to trigger that is to type out the full invocation, e.g. [url unfurl="true" media="youtube:<id>"]<url>[/url], which is a bit of a pain. I'll look into finding a better way to do that later.
I think it's still turning into media.

like, I'm only typing out the url to a picture
Code:
https://rule34.xxx/index.php?page=post&s=view&id=10091976

But it's still turning into media link
 
I don't suppose we can see a return of the previous "eek" smiley? The old was great for expressing surprise, the new one is more like expressing dismay. It's disconcerting to look through my old posts and see the tone of a line take a very different shift with the new smiley.

Like, you can keep the new one, but give it another identifier than : eek : and restore the old : eek : one or something, please? :)
 
So I can't figure out how to make tables smaller than the whole width of the screen in Xenforo 2. Does anyone have an explanation on how to do that? I looked at old posts with working tables, but the bbcode for that stuff is crazy.
 
Test
Edit: Nope, table setup lets you specify a width, but it doesn't do anything.
 
Last edited:
So I can't figure out how to make tables smaller than the whole width of the screen in Xenforo 2. Does anyone have an explanation on how to do that? I looked at old posts with working tables, but the bbcode for that stuff is crazy.

This should be 600px wide:

Name 1 Name 2
Verielle Hrumadra
Aeria Svadrifa
Dhylyris Revif
Thylaria Ava
Teninis Svirun
Calyphe Arlrun
Tyrorena Sveldana
Lyphete Nysiphis
Agrior Morylia
Kalmold Eygrior
Have to use [xtable]
 
This should be 600px wide:

Name 1 Name 2
Verielle Hrumadra
Aeria Svadrifa
Dhylyris Revif
Thylaria Ava
Teninis Svirun
Calyphe Arlrun
Tyrorena Sveldana
Lyphete Nysiphis
Agrior Morylia
Kalmold Eygrior
Have to use [xtable]
Do I have to manually do all that code, or is there some sort of shortcut?
 
Do I have to manually do all that code, or is there some sort of shortcut?
Only manual, as far as I know. (I checked; it's BBCode-only, no editor support, as of December last year, per Xon.)

I do have some regular expressions I use in Visual Studio Code to make it easier to fill in the basics, though. For example, where the names are each listed on their own line, I can do a search and replace using
Code:
^((.+)\n(.+))$
and
Code:
{tr}\n{td}$2{/td}\n{td}$3{/td}\n{/tr}
to capture two lines at a time and put them in their own TD cells, enclosed in a TR row. Replace all, and everything's built except the TBODY and header.

The XTable can handle almost anything you can do with an HTML table, so it's understandable that the complexity doesn't mesh well with the visual editor. Xon did say he was trying to get the functionality to work with standard tables, a few years ago. Not sure if that ever got anywhere.
 
Last edited:
Looking at the code via quote, it's just the same as a regular table but with the table tags changed to xtable and then the required size added to the opening xtable with |size= followed by the width and height in pixels.
 
Only manual, as far as I know. (I checked; it's BBCode-only, no editor support, as of December last year, per Xon.)
That's very unfortunate.

The XTable can handle almost anything you can do with an HTML table, so it's understandable that the complexity doesn't mesh well with the visual editor. Xon did say he was trying to get the functionality to work with standard tables, a few years ago. Not sure if that ever got anywhere.
Somewhat amusingly one of the first results I had looking for how to resize tables in xenforo 2 was this:

But that's a mod that has to be installed in the forum.
 
In the Dark High Contrast style, Read and Unread alerts are the same colour.
 
@alethiophile
Duotone FontAwesome characters are ... "inverted?" on dark theme? On dark theme the secondary layer should be the opaque one, and the primary layer should be the transparent one.
 
A further problem with the email notifications not showing any of the actual content is that, when you get two alerts from a thread in a day, some clients like Gmail automatically presume that it's entirely the same message and trims the entire message. Would prefer that emails once more contain at least a good measure of the content we're being notified about.
 
Hello, I'm generally a lurker and I have enjoyed the update, having to repick something every single time is super annoying. I've always followed stories I've enjoyed. There is now an annoying default change.
Image
This window always defaulted to 'without receiving email notifications'. Now it defaults to 'receive email notifications'. It should default to the least intrusive option unless something is implemented to remember your choice.
 
Last edited:
So I have played with alert settings slightly since the update, but do not receive any alerts (I do not get/want emails, just top right corner alerts) at all from watched threads, some of which I have checked on before a new update. What should my settings look like to have it the same as before the update/what should I look for to get alerts working again?
 

Users who are viewing this thread

  • Back
    Top