[OzzModz] Most Ever Online

[OzzModz] Most Ever Online 2.0.1

No permission to download
Late to the party. Love this add-on as a new forum owner. I noticed a peculiar thing...

When in "light mode," it displays like this:

1647708601719.webp

But, in "dark mode," the bottom line disappears:

1647708632995.webp

If I drag-highlight with my cursor, I can see it:

1647708679848.webp

Can I fix it to show in "dark mode?" Thanks!
 
If a usergroup doesn't have any permissions then an empty bar is displayed under the online total box. (where the most visitors online was: text would normally go)
 
If a usergroup doesn't have any permissions then an empty bar is displayed under the online total box. (where the most visitors online was: text would normally go)

It's not empty. The text is there. But, in the "dark mode," it (font) blends with the background.
 
Just a couple suggestions:
  1. Why not make the most visitors count layout the same as most members and most guests?
  2. If you don't do #1, then a couple slight changes to the way Most Visitors shows would be nice. Currently there is an extra space after the the most visitors count before the comma. Also it splits on two lines for most people and currently just has the year on the second line, it would be nice if it broke after the visitor count comma and placed the entire date on the second line.
View attachment 208341
My post may have been missed awhile back, thought I'd bring it back up...
 
It's not empty. The text is there. But, in the "dark mode," it (font) blends with the background.
Nah, this is a different problem.

There shouldn't be any text there as the user doesn't have permission, but it's still drawing the box as if there was.
 
Nah, this is a different problem.

There shouldn't be any text there as the user doesn't have permission, but it's still drawing the box as if there was.

Not a user permission problem. See my original comment #146.

The text is there in both themes as it should be. It just shows better in one theme.

I just need someone to show me how to edit the code so the text is visible in the dark mode.
 
Last edited:
Not a user permission problem. See my original post. The text is there in both themes as it should be. It just shows better in one theme.
Sorry I think we're talking about different issues.

I have disabled the addon for unregistered users, but the empty box is still there.

I don't use the dark theme.
 
Yes. I'm familiar with that. I'm in the correct theme. But, no matter how I change the color codes, it does nothing.
i'm sorry but i cant help you more :(

but here my code for my dark theme if it can help you
Code:
.main-container {
    display: flex;
    flex-direction: column;   
}



.totalContainer {

display: flex;
color: @xf-paletteNeutral;
padding: 10px 2px 5px 2px;
    
    &.totalContainer--lessPadding {
    padding: 0;   
    }

    
}



.memberContainer {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    
}

.guestContainer {
    display: flex;
    justify-content: space-between;
    
}


.flexWidget {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: @xf-textColorDimmed;
}

.visitorTotals {
    font-size: 11px;
    padding-top: 10px;
    color: @xf-paletteNeutral;
    
}

.guestPhrase, .memberPhrase {
    float: left;
}

.guestCounts, .memberCounts {
    float: right;
}

.totalCounts {
    font-size: 11px;
    
}
 
i'm sorry but i cant help you more :(

but here my code for my dark theme if it can help you
Code:
.main-container {
    display: flex;
    flex-direction: column;
}



.totalContainer {

display: flex;
color: @xf-paletteNeutral;
padding: 10px 2px 5px 2px;
 
    &.totalContainer--lessPadding {
    padding: 0;
    }

 
}



.memberContainer {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
 
}

.guestContainer {
    display: flex;
    justify-content: space-between;
 
}


.flexWidget {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: @xf-textColorDimmed;
}

.visitorTotals {
    font-size: 11px;
    padding-top: 10px;
    color: @xf-paletteNeutral;
 
}

.guestPhrase, .memberPhrase {
    float: left;
}

.guestCounts, .memberCounts {
    float: right;
}

.totalCounts {
    font-size: 11px;
 
}

BOOYA! Fixed it! Changed this from @xf-paletteNeutral2 to @xf-paletteNeutral

1647806023313.png

1647806358192.webp

Thanks!! I was changing the wrong thing. I'm a noob who really has no clue. But, I'm not afraid to try stuff!

Once again, this forum has been immensely valuable!
 
Top Bottom