MyBB Community Forums

Full Version: [CSS] I've got a button issue.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As you can see in the link below, the "Post Reply" button is coming over the top of the thead a little bit. I'm still learning CSS, so I'm struggling to figure out the best way to space it out. I don't want to change the padding, I like the size of the button as it is.

http://anonforum.net/showthread.php?tid=2
[Image: FGfs.png]

That's what you mean?

ADMIN CP → Templates & Style → Templates [YOUR_NAME_THEME] Templates → Show Thread Templates → showthread_newreply → And at the end of the template add:
<br />
If you do not need one once, add a few.
^^ That will solve the issue for only that button and remain the problem from other area.

Open your global.css and find:

a.large_button {

make it:

a.large_button {
display: inline-block;
margin: 5px 0;

and save.

What you will get:

[Image: 7wUazq5.png]
(2014-02-01, 01:34 PM)effone Wrote: [ -> ]^^ That will solve the issue for only that button and remain the problem from other area.

Open your global.css and find:

a.large_button {

make it:

a.large_button {
display: inline-block;
margin: 5px 0;

and save.

What you will get:

[Image: 7wUazq5.png]

Thank you very much. I'll read up on 'display' So I can add it to the bit if knowledge I have.