Titles set to display: none;

Post a reply


In an effort to prevent automatic submissions, we require that you complete the following challenge.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :| :mrgreen: :geek: :ugeek: :arrow: :angel: :clap: :crazy: :eh: :lolno: :problem: :shh: :shifty: :sick: :silent: :think: :thumbup: :thumbdown: :salute: :wave: :wtf: :yawn: :facepalm: :bravo: :dance: :beard: :morebeard: :xmas: :HeHe: :trollface: :cookie: :rainbow: :monkeysee: :monkeysay: :happybday: :headwall: :offtopic: :superhappy: :terms: :beer:
View more smilies

BBCode is ON
[img] is OFF
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Titles set to display: none;

Re: Titles set to display: none;

Post by Cerberus » 11 Aug 2017, 20:57

While I agree that the blink is slightly distracting, it's not an issue, and having a title displayed for each message would be far more distraction, in my humble opinion.

Re: Titles set to display: none; n stuff

Post by lexikos » 05 Jun 2017, 21:50

Vertical space between posts is fine, and sometimes helps readability. Having the topic title repeated for every post does not. It is just noise.

If it was smarter, it would only hide titles that match the previous post. However, I think most people wouldn't pay attention to the subject field when they post anyway. If you don't use the quote button, the default subject is Re: the original topic, not necessarily the post you're replying to.

Re: Titles set to display: none;

Post by fischgeek » 05 Jun 2017, 17:06

Perhaps to limit the hiding to only post titles:

Code: Select all

$('[id*=post_content] h3').each(function() {
	var t = $(this);
	if (t.hasClass('first') || t.text().substr(0, 4) == 'Re: ') {
		t.fadeOut();
	}
});

Re: Titles set to display: none;

Post by fischgeek » 05 Jun 2017, 16:55

tank wrote:which theme are you using
Simplicity.
lexikos wrote:Why is it possible to write something in topic field for later posts?

It's been this way for over two years.

The effect on the search results was unintended.
Ah. Okay. I looked for a post on this topic, but didn't have the keywords right obviously. I'm I the only one who wouldn't mind having those back?

EDIT: It's mentioned that the change was to declutter and free up vertical space. However, It doesn't seem to do that at all. The space for the h3 is still visible (i.e. nothing is shifted up);

Re: Titles set to display: none;

Post by lexikos » 05 Jun 2017, 16:34

Why is it possible to write something in topic field for later posts?

It's been this way for over two years.

The effect on the search results was unintended.

Re: Titles set to display: none;

Post by tank » 05 Jun 2017, 16:23

which theme are you using

Re: Titles set to display: none;

Post by tank » 05 Jun 2017, 16:23

Thats a PHPBB3 question

Titles set to display: none;

Post by fischgeek » 05 Jun 2017, 14:33

I've noticed that when I open a topic, all the posts briefly show the title of the topic, then fade out (css/jquery animation). Upon inspection, it looks like the h3's are set to display: none; This also affects search results. Was this by design and I missed a communication about it?

Top