Mobile positioning

Posted in: Newsmag
Post count: 133

Hello Guys, is it possible to set to change layout of the page/posts when users accessing the web from the mobile devices. i mean due the high rates of ads we would like to position the ads in a different way when users accessing the web using smartphones.

Post count: 6535

Hi

The same content you have on your site’s desktop version will be also be present on mobile version, but styled different. You can alter the design using media queries to display an element on different way on mobile devices, for example:

@media (max-width: 767px){
.the-elemnt-class {
css-property: for-mobile;
}
}

Here you can find some useful css information: http://www.w3schools.com/cssref/css3_pr_mediaquery.asp

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newsmag’ is closed to new topics and replies.