Responsive design question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jkotlowski
    Senior Member
    • May 2015
    • 103
    • 5.1.x

    Responsive design question

    In the responsive design for mobile devices, I'm having an issue with the way a search model created to show latest topics presents.

    On the PC, the module shows the last user to reply to a topic and how long ago they replied.

    But on mobile devices, it only shows who started the topic, how long ago it was started, and how many responses, views, and likes it has. This simply doesn't work well. Nobody remembers how many responses a topic had prior to the last time they viewed it. It needs to show who the last person to reply was and how long ago they replied. But I have not found a way to do this.

    Please tell me I'm overlooking it and this isn't the way it HAS to be.
    Last edited by jkotlowski; Mon 1 Jun '15, 4:05pm.
    Want bigger avatars for your forum? There's a mod here. But be sure to vote for the JIRA requesting the fix here!
  • glennrocksvb
    Former vBulletin Developer
    • Mar 2011
    • 4011
    • 5.7.X

    #2
    Add this additional css via Sitebuilder > Style > CSS Editor and select the style(s) you are using:

    Code:
    .l-small .topic-list-container .topic-list .cell-count {
        padding-bottom: 0;
    }
    .l-small .topic-list-container .topic-list .topic-item td.cell-lastpost {
        display: block;
        padding: 0 5px 5px;
    }
    .l-small .cell-lastpost .avatar {
        display: none;
    }
    .l-small .cell-lastpost .lastpost-by {
        font-size: 0.9em;
        color: #6A6A6A;
        display: inline;
    }
    .l-small .cell-lastpost .lastpost-by:before {
        content: "Last post ";
    }
    .l-small .cell-lastpost .post-date:before {
        content: "on ";
    }

    Flag Icon Postbit Insert GIPHY Impersonate User BETTER INITIALS AVATAR Better Name Card Quote Selected Text Bookmark Posts Post Footer Translate Stop Links in Posts +MORE!

    Comment

    • jkotlowski
      Senior Member
      • May 2015
      • 103
      • 5.1.x

      #3
      Glenn Vergara

      If I could kiss you man...

      Well, I probably still wouldn't. But I would shake your hand and buy you a drink.
      Want bigger avatars for your forum? There's a mod here. But be sure to vote for the JIRA requesting the fix here!

      Comment

      Related Topics

      Collapse

      Working...