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.

info topic like mybb

2 posters

Go down

Solved info topic like mybb

Post by Sp1Ke October 4th 2023, 3:51 pm

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 October 4th 2023, 7:12 pm; edited 1 time in total
Sp1Ke
Sp1Ke
New Member

Posts : 6
Reputation : 1
Language : English

http://support.punbbforum.com/

Back to top Go down

Solved Re: info topic like mybb

Post by Razor12345 October 4th 2023, 4:29 pm

Good afternoon!

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


Unspecified - info topic like mybb Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1465
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Solved Re: info topic like mybb

Post by Sp1Ke October 4th 2023, 4:48 pm

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

Posts : 6
Reputation : 1
Language : English

http://support.punbbforum.com/

Back to top Go down

Solved Re: info topic like mybb

Post by Razor12345 October 4th 2023, 5:03 pm

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:

Unspecified - 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.


Unspecified - info topic like mybb Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1465
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

TonnyKamper likes this post

Back to top Go down

Solved Re: info topic like mybb

Post by Sp1Ke October 4th 2023, 5:49 pm

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
Sp1Ke
Sp1Ke
New Member

Posts : 6
Reputation : 1
Language : English

http://support.punbbforum.com/

Back to top Go down

Solved Re: info topic like mybb

Post by Razor12345 October 4th 2023, 6:21 pm

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

Unspecified - info topic like mybb Scree410


Last edited by Razor12345 on October 4th 2023, 6:34 pm; edited 1 time in total


Unspecified - info topic like mybb Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1465
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

TonnyKamper likes this post

Back to top Go down

Solved Re: info topic like mybb

Post by Sp1Ke October 4th 2023, 6:31 pm

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
Sp1Ke
Sp1Ke
New Member

Posts : 6
Reputation : 1
Language : English

http://support.punbbforum.com/

Back to top Go down

Solved Re: info topic like mybb

Post by Razor12345 October 4th 2023, 7: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:

Unspecified - info topic like mybb Scree411


Unspecified - info topic like mybb Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1465
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

TonnyKamper likes this post

Back to top Go down

Solved Re: info topic like mybb

Post by Sp1Ke October 4th 2023, 7:06 pm

one more thing if you can please change the background for like and dislike in white:D
Sp1Ke
Sp1Ke
New Member

Posts : 6
Reputation : 1
Language : English

http://support.punbbforum.com/

Back to top Go down

Solved Re: info topic like mybb

Post by Razor12345 October 4th 2023, 7:08 pm

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

Result:

Unspecified - info topic like mybb Scree412


Unspecified - info topic like mybb Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1465
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

TonnyKamper likes this post

Back to top Go down

Solved Re: info topic like mybb

Post by Sp1Ke October 4th 2023, 7:11 pm

perfect, thank you!
Sp1Ke
Sp1Ke
New Member

Posts : 6
Reputation : 1
Language : English

http://support.punbbforum.com/

Back to top Go down

Solved Re: info topic like mybb

Post by Razor12345 October 4th 2023, 7:17 pm

You are welcome!

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


Unspecified - info topic like mybb Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1465
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum