Quantcast
Channel: Topic Tag: mobile | WordPress.org
Viewing all articles
Browse latest Browse all 22088

alchymyth on "[Theme: Twenty Twelve] mobile widget issue"

$
0
0

this is because you have set the width to be narrower:

.site-content {
    width: 61%;
}

you might need to wrap that style into a @media query;

example:

@media screen and (min-width: 600px) {
  .site-content {
      width: 61%;
  }
}

Viewing all articles
Browse latest Browse all 22088

Trending Articles