Artigos não abrem no celular

Good afternoon!
When I access my blog on my cell phone I can not access the articles.
It’s as if I clicked on any image, nothing happens.
My blog is http://lucrandocomaweb.com.br

Hi @frangt,

I hope you are well today and thank you for your question.

You can try resolving this issue by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS


@media (max-width: 992px){
  div#secondary{
    clear:both;
  }
}

Best Regards,
Movin

Good afternoon Movin
I did what you said and it worked.
Now I can browse my blog, but I found a problem.
Not all articles are framed correctly on the phone.
It used to work right.
How can I solve this?

Could you please share me the screenshot of the issue so that i can troubleshoot it?

You can also use https://www.responsinator.com/ to test it.

This is the mobile print of one of the articles that are having problems.
This is the link from the article http://lucrandocomaweb.com.br/como-criar-um-blog-com-o-wordpress/

To resolve that issue instead of above code please try using the below custom CSS code.

@media (max-width: 992px){
div#primary {
    max-width: 100%;
    padding: 0;
}
  div#secondary{
    clear:both;
  }
}

Now it seems to be all right.
Thank you for the help.
God bless you!

You are most welcome here :slight_smile: