MyBB Community Forums

Full Version: Footer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello,

My footer has on the rigt a smaller | is there a way to solve that?
Open your board for a minute and please elaborate in details what do you want
(2014-03-25, 06:34 PM)marcus123 Wrote: [ -> ]Open your board for a minute and please elaborate in details what do you want

He means the | to the right of the MyBB copyright. You don't need it open to see it.
(2014-03-25, 06:40 PM)spork985 Wrote: [ -> ]
(2014-03-25, 06:34 PM)marcus123 Wrote: [ -> ]Open your board for a minute and please elaborate in details what do you want

He means the | to the right of the MyBB copyright. You don't need it open to see it.

That's right, any ideas?
He needs to open it because footer is not showing completely when board is closed!

OK now I see what you mean!
(2014-03-25, 06:50 PM)marcus123 Wrote: [ -> ]He needs to open it because footer is not showing completely when board is closed!
It is showing good, tested it on a other browser..
Find: .footer_copyright and add padding: 18px;

.footer_copyright {
padding: 18px;
}
(2014-03-25, 06:57 PM)marcus123 Wrote: [ -> ]Find: .footer_copyright and add padding: 18px;

.footer_copyright {
padding: 18px;
}

This is the CSS then, doesn't help..
float: center;
box-shadow: -1px 0 0 0 #333333 inset;
border-right: 1px solid #000;
.footer_copyright {
padding: 18px;
}
You don't understand just add

padding: 18px;

to

.footer_copyright

It should look like this!

.footer_copyright {
  border-right: 1px solid #000000;
 box-shadow: -1px 0 0 0 #333333 inset;
 padding: 18px;
}
Now I don't see any lines.
Pages: 1 2