I recently launched my website in the "alpha" stage -
I have implemented full mobile support using media queries. It displays perfectly when the browser window is resized, but I noticed a strange space to the right of everything on my Samsung Galaxy Note 2 with a width of 720 pixels. The extra space is only filled with the background of the page.
I have tried setting widths to 100% and using overflow-x hidden on multiple elements, but the issue persists.
You can see the problem for yourself by visiting the link above.
Here is how the site appears on my mobile device:
https://i.sstatic.net/27wJc.png
Does anyone have any suggestions?
Below are the links to all stylesheets controlling the main mobile aspects of the website: - -
Here is the HTML code for the header:
<html>
<head>
<title>Flat Designs</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" media="only screen and (min-width: 811px)"href="mainstyle.css">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 810px) and (min-width: 721px)" href="tabstyle.css">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 720px) and (min-width: 521px)" href="mobilestyle.css">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 520px) and (min-width: 431px)" href="tinystyle.css">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 430px) and (min-width: 1px)" href="smalleststyle.css">
<link rel="shortcut icon" href="http://www.iconj.com/ico/9/e/9ecev208p2.ico" type="image/x-icon" />
<link href='http://fonts.googleapis.com/css?family=Ropa+Sans:400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'>
</head>