Empty space after footer

by dutzu
4 replies
Hi,

I've got a site http://www.androidmaniac.net and a custom theme. All's runnin' good but I recently found that on the mobile it shows me an empty space after footer, can't figure out why.

The index/homepage isn't full screen, but in the post it's just the way it should be.

Check with chrome option(inspect)

What can I do to show a nice full page for mobile versions ?
Thanks.

P.S Please give me some advices for mobile optimization. And why not, for the entire site.

CSS:
Code:
#footer {
	width: 900px;
	font-size: 0.99em;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: -74px;
	padding: 10px 0px 10px 0px;
}

#footer a { color: #CC6600; text-decoration: none; }
#footer a:visited { color: #CC6633;text-decoration: none; }
#footer a:hover { color: #FF6600; text-decoration: underline; }
#footer li {list-style-type: none; }
#footer h2 {border-bottom: 0px dotted #8dd531; margin-top: -7px;}
#footer h2:hover {border-bottom: 0px dotted #8dd531; margin-top: -7px;}
#empty #footer #space
  • Profile picture of the author element121
    Hi, I took a look at your site and it doesn't seem to be responsive? I see you are running WordPress, you should be able to find a modern responsive theme for your site.
    {{ DiscussionBoard.errors[10585080].message }}
  • Profile picture of the author dutzu
    Yeah but it's a custom made wordpress theme.

    I want to try to optimize this first.
    {{ DiscussionBoard.errors[10598289].message }}
  • Profile picture of the author Alexander Simmons
    You can optimize your website for mobile devices and make it more mobile friendly by adjusting media queries in your CSS code.
    Here is example of using media querry
    Code:
    @media screen and (device-width: 1024px) {
     div {width: 980px;}
    }
    More information about media queries
    {{ DiscussionBoard.errors[10613129].message }}
  • Profile picture of the author Zafartech
    Hi. you need to make your website mobile friendly.so for this apply media queries
    Signature

    For Website and Graphic Design service I am available.

    {{ DiscussionBoard.errors[10626602].message }}

Trending Topics