wordpress - Responsive Site works like as on computer -


recently had decided make wordpress website responsive. took non-responsive theme (evolve) , made http://gopuc.com . on website when shorten window website looks great. but, when try use on phone site looks on computer. let me know doing wrong , how fix this.

thanks in advance.

fort making site responsive site please eneter give html , css code in site.

html

   <title>my cool site huzzah</title>     <?php      if (!$_get['resp'] == 'no') { ?>        <meta name="viewport" content="width=device-width">    <?php } ?>  </head>  <body class="<?php if (!$_get['resp'] == 'no') { echo "resp"; } ?>"> 

and css code

.page-wrap { width: 80%; }  @media (max-width: 600px) {   .resp .page-wrap { width: 100%; } } 

and check site more suggestion regarding responsive theme


Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -