• 0

Container Shifting only on Mobile Devices


Question

I finished my site and I put it live, online yesterday. Today I noticed that the main container shifts on the 'Our Anti-Tarnish Technology' and 'Purchase Tarnish Tamer' pages, but it only shifts when viewing on a mobile device, smartphone. If someone could help me, that would be great. Thanks.

Site :

http://www.tarnishtamer.com

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Rather than deleting the topic you could post your solution, it could possibly help someone in future if they came across a similar problem to yours?

Link to comment
Share on other sites

  • 0

i just moved all the properties from the img rule to its own id....

I Originally had this:

#teatable {
	position: relative;
	float: right;
	width: 358px;
}

#teatable img {
	position: relative;
	top: 18px;
	right: 90px;
}

Change that fixed it....just combined the rules

#teatable {
	float: right;
	width: 358px;
	position: relative;
	top: 18px;
	right: 90px;
}

Link to comment
Share on other sites

This topic is now closed to further replies.