XF 2.3 Annoying black triangle

Grump1!

New member
IMG_0161.webp

Any ideas on how to get rid of the black triangle?

Today is day 3 of xenforo for me and these never appeared during my demo experiences.
 
Link to site - need to see where it is and possibly add some CSS to get rid of it for you. Can't tell just from the image.

As an aside for anyone with styling issues, a link to your site is necessary as there are so many different styles and add-ons that can change styling.
 
Link to site - need to see where it is and possibly add some CSS to get rid of it for you. Can't tell just from the image.

As an aside for anyone with styling issues, a link to your site is necessary as there are so many different styles and add-ons that can change styling.
It's been 13+ years since I did any of this but you're right.

Until the dns change sorts itself out the link is:


 
Also while you have it open, if you wanted to cure my OCD you could add in ;)

CSS:
.p-nav-list .p-navEl.is-selected .p-navEl-link:first-child {
    padding-left: 0px;
}

Before:
1764165219981.webp

After:

1764165200992.webp

Just a suggestion of course!


Also your hover on a nav item is white which makes the text unreadable.. maybe something like this would be nicer?

CSS:
.p-nav-list .p-navEl:not(.is-selected):not(.is-menuOpen):hover, .p-nav-list .p-navEl:not(.is-selected):not(.is-menuOpen) .p-navEl-link:hover, .p-nav-list .p-navEl:not(.is-selected):not(.is-menuOpen) .p-navEl-splitTrigger:hover {
    color: hsla(var(--xf-contentHighlightBg));
    text-decoration: none;
    background: #285f2e;
}
 
Back
Top Bottom