Skip to main content
Topic: Where can I change the space between "No New Posts" and the container border? (Read 1382 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Where can I change the space between "No New Posts" and the container border?

Hello!
Where can I change the distance/space between "No New Posts / Redirect Board" and the container border?
Somewhere in the index.css?
I used the browser inspector but could not find the right position.
ElkArte version: 1.1.8 / Theme: BeSocial / PHP 8.0

Re: Where can I change the space between "No New Posts" and the container border?

Reply #1

You can change the padding in:
Code: [Select]
/* Main forum area. */
#wrapper {
padding: 1.2em 1em;
margin-top: 1em;
border: 3px solid;
border-radius: 5px;
}
Something like:
Code: [Select]
/* Main forum area. */
#wrapper {
padding: 1.2em 1em 5em 1em;
margin-top: 1em;
border: 3px solid;
border-radius: 5px;
}
would do.
Adapt the 5em to whatever you want. :)
Bugs creator.
Features destroyer.
Template killer.

Re: Where can I change the space between "No New Posts" and the container border?

Reply #2


Okay, thank you!
ElkArte version: 1.1.8 / Theme: BeSocial / PHP 8.0