ElkArte Community

Project Support => Support => Topic started by: Mrs. Chaos on June 14, 2018, 12:04:57 pm

Title: Where can I change the space between "No New Posts" and the container border?
Post by: Mrs. Chaos on June 14, 2018, 12:04:57 pm
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.
Title: Re: Where can I change the space between "No New Posts" and the container border?
Post by: emanuele on June 14, 2018, 02:34:00 pm
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. :)
Title: Re: Where can I change the space between "No New Posts" and the container border?
Post by: Mrs. Chaos on June 14, 2018, 02:40:51 pm

Okay, thank you!