Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Devon's avatar

@JeffreyWay As far as the nav pills go, you could always apply a margin to the link, instead of the list items. That would bypass the issue of the table-cell layout. Eg.

.forum-nav > li > a { 
    margin-right: 10px;
}
.forum-nav > li:last-child > a {
    margin-right: 0;
}

...or, even better:

.forum-nav > li:not(:last-child) > a {
    margin-right: 10px;
}

Edit 1: And while I'm here... @Devon
Edit 2: Got nothing, do notifications not apply to edits?

1 like
timokfine's avatar

@JeffreyWay I tried to create a new thread about this, but I'm getting an error page.

How exactly did you develop the username tagging and notifications system? I noticed it on Esotalk and have since decided to build something similar on my own custom forums.

What's the process behind the scenes?

tundeopaleye's avatar

@JeffreyWay hi, can you please do a video on Mentions (with hyperlinks) and their Notifications like you have here? Or is there one already?

Snapey's avatar

Can we have notification that someone said you gave the right answer. Sometimes several days go by and you notice that the Awards has gone up by one, and it's hard to find out which answer it was.

bashy's avatar

@Snapey That x9000, it's been asked before but not sure if it's been pushed back by other jobs or not seen at all!

Previous

Please or to participate in this conversation.