Skip to:
Content
Pages
Categories
Search
Top
Bottom

Member Names are shortened

Viewing 3 replies - 1 through 3 (of 3 total)

  • Robkk
    Moderator

    @robkk

    Probably a CSS issue. Link to your site so I can give you some CSS to fix the author name text.


    Whitebeard
    Participant

    @whitebeard


    Robkk
    Moderator

    @robkk

    This is CSS from your theme that is causing the issue.

    .x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-name, 
    .x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-role, 
    .x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-ip {
        display: block;
        font-size: 9px;
        letter-spacing: 1px;
        text-transform: uppercase;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    Using this Custom CSS could fix your issue. Place the custom CSS where you can put CSS code snippets like a custom CSS plugin, some option in your theme, etc. Add !important if it still does not work.

    .x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-name, 
    .x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-role, 
    .x-bbp-item-info-content .x-bbp-item-info-author .bbp-author-ip {
        overflow: visible;
        text-overflow: inherit;
        white-space: inherit;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar