html - Mobile scroll too long leaving white space below text -


http://www.cllrart.com/more

in mobile browsers, page scrolls way below last text on page causing white space appear @ end. how possibly remove this?

any appreciated

it looks css .entry class has large bottom-margin.

.entry {     margin: 4.5em 0; // <-- reducing  } 

you can try this:

.entry {     margin: 4.5em 0 0; // <-- doing might you're looking for.  } 

i hope answers question.


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -