Help with responsive WP theme

by 7 replies
8
I am using a responsive theme on my blog blog.relationshipsurgery.com

When on my iPhone the post width goes so narrow that my ads get cut off the side of the page. Is there a way I can set the minimum width of the site? Ideally I wish to set the minimum width to 336px on all devices?
#website design #responsive #theme
  • Hello mate

    I can help you for this reponsive issue
    • [1] reply
    • Then why not help here, so every one can learn?
      • [ 1 ] Thanks
      • [1] reply
  • find the media query code in the css for that screen size and set the min width of your body or wrapper

    @media screen and (min-width:0px) and (max-width:479px)
    {
    #your-wrapper-id{min-width:336px;}
    }
  • There is nothing in the style.css with the term "media". Where else could this be?
  • which responsive theme you are using, the Zippy WordPress Theme I use works well on portable devices.
  • try to edit width size in
    http://static.relationshipsurgery.co...1386895052.css
    may be it will work.

Next Topics on Trending Feed

  • 8

    I am using a responsive theme on my blog blog.relationshipsurgery.com When on my iPhone the post width goes so narrow that my ads get cut off the side of the page. Is there a way I can set the minimum width of the site? Ideally I wish to set the minimum width to 336px on all devices?