MyBB Community Forums

Full Version: Buttons below post are in two rows
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Good morning,

Would someone please point me in the right direction in where to look for the code that displays the buttons when viewing posts?

Somehow, they ended up on two rows, I want to get them back on just one row of course:

[Image: e89I5PF.png]

Thank you!
The buttons can be found in template "postbit" or "postbit_classic".

Your "Unlike" button seems to be non-standard, so a plugin!?
Then you need to have a look at the template given by the plugin. Look into Global Templates or the plugin PHP file to find.

I guess the plugin defines a block element (100%) for the "Unlike" button that causes to break the line.

It would be much easier to know the plugin name or a link to your forum to review.

[ExiTuS]
(2019-09-19, 12:48 PM)[ExiTuS] Wrote: [ -> ]The buttons can be found in template "postbit" or "postbit_classic".

Your "Unlike" button seems to be non-standard, so a plugin!?
Then you need to have a look at the template given by the plugin. Look into Global Templates or the plugin PHP file to find.

I guess the plugin defines a block element (100%) for the "Unlike" button that causes to break the line.

It would be much easier to know the plugin name or a link to your forum to review.

[ExiTuS]

Good morning, thank you for the reply. Forgive me for not providing the information sooner. The plugin is Thank You/Like System (3.3.0). It's worked flawlessly since day 1, so I guess I forgot we we even using it!

The forum is located at: https://www.beyond-the-fringe.com

Thank you for your help!
Its a problem with your like/unlike button, as the button is wrapped with div.
Which plugin are you using?

Locate your like button code, change the div to span and your problem will be gone.

[Image: screen.gif]
(2019-09-19, 01:31 PM)effone Wrote: [ -> ]Its a problem with your like/unlike button, as the button is wrapped with div.
Which plugin are you using?

Good morning,

I am using Thank you / Like System (3.3.0).

Thank you!

(2019-09-19, 01:31 PM)effone Wrote: [ -> ]Its a problem with your like/unlike button, as the button is wrapped with div.
Which plugin are you using?

Locate your like button code, change the div to span and your problem will be gone.

Perfect, I will chase it down now!

Thank you!
Sadly thats our home production Toungue
I went ahead and created an issue on behalf of you.
https://github.com/mybbgroup/Thank-you-l...issues/219
(2019-09-19, 01:41 PM)effone Wrote: [ -> ]Sadly thats our home production Toungue
I went ahead and created an issue on behalf of you.
https://github.com/mybbgroup/Thank-you-l...issues/219


Perfect. thank you!

(2019-09-19, 01:41 PM)effone Wrote: [ -> ]Sadly thats our home production Toungue
I went ahead and created an issue on behalf of you.
https://github.com/mybbgroup/Thank-you-l...issues/219

I hate to be a pain, but I can't find where to edit <div to <span. Would you mind pointing me in the right direction?

Thank you for your help!

(2019-09-19, 01:46 PM)Catch Wrote: [ -> ]
(2019-09-19, 01:41 PM)effone Wrote: [ -> ]Sadly thats our home production Toungue
I went ahead and created an issue on behalf of you.
https://github.com/mybbgroup/Thank-you-l...issues/219


Perfect. thank you!

(2019-09-19, 01:41 PM)effone Wrote: [ -> ]Sadly thats our home production Toungue
I went ahead and created an issue on behalf of you.
https://github.com/mybbgroup/Thank-you-l...issues/219

I hate to be a pain, but I can't find where to edit <div to <span. Would you mind pointing me in the right direction?

Found it! Works good. Thank you for your help!