Hi,
on the website www.automatedauto.com, the homepage (and only the homepage) has way too much whitespace after the footer.
I have no idea what is causing this.
Daniel Yoen answers:
style.css:3325
.item {
float: left;
line-height: 18px;
margin: 0 41px -9999px -21px;
padding: 0 43px 9999px 46px; //here the problem
width: 220px;
Martin Pham answers:
please goto styles.css (line 3325)
find
.item {
float: left;
line-height: 18px;
margin: 0 41px -9999px -21px;
padding: 0 43px 9999px 46px;
width: 220px;
}
change to
.item {
float: left;
line-height: 18px;
margin: 0 41px 0 -21px;
padding: 0 43px 0 46px;
width: 220px;
}
[[LINK href="http://phim16.com/"]]phim[[/LINK]]
Kyle answers:
Add
.item {
margin-bottom: 0px !important;
padding-bottom: 0px !important;
}
to bottom of style.css
Jatin Soni answers:
The padding value is causing the issue
fine class .item on line #3325 in style.css on this path "wordpress theme folder /u-design/style/style1/css/style.css"
find padding value in .item class on line #3325
padding: 0 43px 9999px 46px
9999px is causing this issue. So change it whatever you want. I don't know it is done intentionally or by mistake and if there is any use of it.
Arnav Joy answers:
write following lines to css
.home .item {
padding: 0 43px 0 46px !important;
}
this is new css , as i do not want to change the original css because i may effect any internal part of the website and as you said the problem is only at your home page then i am overtiring to home page , try it .