-
AuthorPosts
-
January 21st, 2021 at 00:13 #112663
Hi !
Thanks for the nice theme. I already customised everything needed, only
i have 1 problem, how to get rid from white empty space between the content
and footer. I don’t use themes original landing page.
I’ve made own front page. At the moment configuration:
– themes builtin landing page disabled, (use WordPress homepage”)
– header disabled
– slider disabled
– all featured boxes disabled
– text areas disabled
– all widgets/socials disabled from footer
Tried css options:
body #container #main, body #container #main article.page .entry-content {
padding-bottom: -0px;
}
#container:not(.anima-landing-page)
.main {
padding-bottom: 0em;
margin-bottom: 0em
}
Didn’t help.
All margins/paddings “zero”, but white space continues … any glue how to get rid of it?
This is not only the front page issue, the same white space problem has also in other pages/subpages as well.
I’m building website in local xampp server, site is not online, can’t post the link. Sorry.January 23rd, 2021 at 12:59 #112761Searched most forums here, seems css code for other themes, works also well for Anima.
Tested, works also with Roseta.
Remove white space between content and footer:
article.hentry, .main .content-widget {
display: block;
position: relative;
margin-bottom: 0em;
}January 23rd, 2021 at 13:13 #112762Another useful trick, if Pencil/Edit button disturbs you previewing pages, when logged in as admin, you can hide Edit link using such css code:
.entry-meta > span {
display: none;
margin-right: 1em;
} -
AuthorPosts
The topic ‘Get rid of white space between content and footer’ is closed to new replies.