I have a site hosted on a very verbose url, so I have bought a domain name from which I forward all calls to my site. The problem is that my domain provider uses an iFrame to embed my site (so that the domain url shows in the url bar instead of the very verbose url), and this causes my css media queries to fail.Is there a way to solve this problem? Thank you. Here is the html for the forwarding site.\[code\]<html> <head> <title>This is the title</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="description" content=""> <meta name="keywords" content=""> </head> <frameset style="width: 100%; height: 100%; border: none; padding: 0px; margin: 0px;" rows="*"> <frame src="http://myveryverboseurl.com/blalba" name="loopiaForwardFrameQwwwewSSS1"> content </frame> <noframes> content </noframes> </frameset> </html>\[/code\]