The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
2 posters

    info topic like mybb

    Sp1Ke
    Sp1Ke
    New Member


    Posts : 6
    Reputation : 1
    Language : English

    Solved info topic like mybb

    Post by Sp1Ke Wed Oct 04, 2023 8:51 am

    Technical Details


    Forum version : #Unspecified
    Position : Founder
    Concerned browser(s) : Other
    Screenshot of problem : https://i.postimg.cc/RhRGg77R/ss.png
    Who the problem concerns : Yourself
    Forum link : help.forumotion.com

    Description of problem

    i would like to change the style of info poster from a topic, from awesomebb to mybb, but still keep the buttons from awesomebb
    more specific: that blue line, avatar, name and rank position


    Last edited by Sp1Ke on Wed Oct 04, 2023 12:12 pm; edited 1 time in total
    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

    Solved Re: info topic like mybb

    Post by Razor12345 Wed Oct 04, 2023 9:29 am

    Good afternoon!

    First of all, provide a link to your forum.
    Be more specific about what you want - perhaps you can provide an example.



    info topic like mybb Screen51
    Sp1Ke
    Sp1Ke
    New Member


    Posts : 6
    Reputation : 1
    Language : English

    Solved Re: info topic like mybb

    Post by Sp1Ke Wed Oct 04, 2023 9:48 am

    https://support.ace.st/
    my view topic body info poster look like this info topic like mybb Ss2
    and i want to change it to look like default from mybb themes info topic like mybb Ss
    But just the position of avatar, name, rank and message, not the buttons or something else
    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

    Solved Re: info topic like mybb

    Post by Razor12345 Wed Oct 04, 2023 10:03 am

    AP - Display - Templates - General - viewtopic_body

    Find:

    Code:
    <div class="post-author">
                         <span class="post-author-name">
                            {postrow.displayed.POSTER_NAME}
                         </span>
                                        <span class="post-author-title">
                            {postrow.displayed.POSTER_RANK_NEW}{postrow.displayed.RANK_IMAGE}
                         </span>
                                    </div>

    And delete.

    Find:

    Code:
             <div class="post-author-avatar">
                                        <div class="avatar-big">
                                            {postrow.displayed.POSTER_AVATAR}
                                        </div>
                                    </div>

    After this code, insert:

    Code:
    <div class="post-author">
                         <span class="post-author-name">
                            {postrow.displayed.POSTER_NAME}
                         </span>
                                        <span class="post-author-title">
                            {postrow.displayed.POSTER_RANK_NEW}{postrow.displayed.RANK_IMAGE}
                         </span>
                                    </div>

    Save. Publish.

    Result:

    info topic like mybb Scree407

    And if you want to change the colour of the Post field in your profile:

    AP - Display - Colors & CSS - CSS Stylesheet

    Insert this code:

    Code:
    .post-author-details dt span.label span {
      color: red !important;
    }

    Save.



    info topic like mybb Screen51

    TonnyKamper likes this post

    Sp1Ke
    Sp1Ke
    New Member


    Posts : 6
    Reputation : 1
    Language : English

    Solved Re: info topic like mybb

    Post by Sp1Ke Wed Oct 04, 2023 10:49 am

    thank you for your help, but it was my mistake i didn't make me understood, i was lookin' for a solution to merge info poster, message and topic name tables and split message table and topic name with that blue line that goes around the avatar
    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

    Solved Re: info topic like mybb

    Post by Razor12345 Wed Oct 04, 2023 11:21 am

    I want to be clear: Is this the result you expect?

    info topic like mybb Scree410


    Last edited by Razor12345 on Wed Oct 04, 2023 11:34 am; edited 1 time in total



    info topic like mybb Screen51

    TonnyKamper likes this post

    Sp1Ke
    Sp1Ke
    New Member


    Posts : 6
    Reputation : 1
    Language : English

    Solved Re: info topic like mybb

    Post by Sp1Ke Wed Oct 04, 2023 11:31 am

    if you can merge message with info user and make the background white, yes
    but the top of the avatar still be in topic name section

    edit: but if it can't be done for this theme because its something specific to mybb, i completely understand and thank you for your time and work:D
    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

    Solved Re: info topic like mybb

    Post by Razor12345 Wed Oct 04, 2023 12:02 pm

    How to place the nickname under the avatar I wrote above.

    About the design of the message block: AP - Display - Colors&CSS - CSS Stylesheet

    Insert this code:

    Code:
    .post-wrap {
      border: 1px solid #cecece;
    }

    .post-header {
      box-shadow: none;
      background-color: #f3f3f3;
      color: black;
      height: 60px;
      border-bottom: 3px solid blue;
    }

    .post-buttons {
      float: none;
    }

    .post {
      box-shadow: none;
      margin: 0 0 0 3px;
    }

    .post-aside {
      background-color: white;
      box-shadow: none;
      margin: 0 3px 0 0;
      padding: 0px 25px 5px;
      margin-top: -60px;
    }

    .avatar-big img {
      position: relative;
        z-index: 600;
    }

    .post-header span.post-heading-wrap a {
        color: black;
    }

    .post-date {
      color: black;
    }

    Result:

    info topic like mybb Scree411



    info topic like mybb Screen51

    TonnyKamper likes this post

    Sp1Ke
    Sp1Ke
    New Member


    Posts : 6
    Reputation : 1
    Language : English

    Solved Re: info topic like mybb

    Post by Sp1Ke Wed Oct 04, 2023 12:06 pm

    one more thing if you can please change the background for like and dislike in white:D
    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

    Solved Re: info topic like mybb

    Post by Razor12345 Wed Oct 04, 2023 12:08 pm

    Code:
    .post-footer {
     background-color: white;
      border-top: none;
    }

    Result:

    info topic like mybb Scree412



    info topic like mybb Screen51

    TonnyKamper likes this post

    Sp1Ke
    Sp1Ke
    New Member


    Posts : 6
    Reputation : 1
    Language : English

    Solved Re: info topic like mybb

    Post by Sp1Ke Wed Oct 04, 2023 12:11 pm

    perfect, thank you!
    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

    Solved Re: info topic like mybb

    Post by Razor12345 Wed Oct 04, 2023 12:17 pm

    You are welcome!

    Problem solved & topic archived.
    Please read our forum rules: ESF General Rules



    info topic like mybb Screen51

      Current date/time is Sun Sep 22, 2024 10:27 pm