Today my blog approved for google adsense, but after linking adsense code to my blog it stop working on mobile (i.e., not clickable on “read more” or when click on title of post). It is perfectly running on desktop but problem occurred on mobile format (i.e., post can’t open). Please suggest some way to resolve that problem. My web URL is http://www.dailycable.in.
After reading many similar question like mobile not responsive etc. I found the below mentioned code :
.side-pull-left #primary {
float: none;
}
to make it post responsive (i.e., clickable and open after when we click on post ). After doing that, when we click on post it start open again. But doing this again a problem occurred that in desktop version my sidebar disappears and it comes below the blog posts. If I remove the code, it again start appearing at right side of the blog but post are not open in mobile phones. Please suggest something.
Rammy
Hi @rammydailycable,
Edit your code like this:
@media only screen and (max-width: 768px) {
.side-pull-left #primary {
float: none;
}
}
Thanks,
Cristian
1 Like