Links in posts/pages are unreachable in mobile view

Hello,

I’m using the standard layout. When I create a page/post with some content and an link on it, I can’t click the link in the mobile view. I’ve compared with your demo. There you’re using the “pull-right” class and in the published files you’re using “side-pull-right”.

When I use edit the page with firebug and replace “side-pull-left” with “pull-left”, everything works as expected and I can click the content links in the mobile view.

Page/Post which does not work:
<div class=“row side-pull-right”>
<div id=“primary” class=“content-area col-sm-12 col-md-8 side-pull-right”>
</div>
</div>

Page/Post which works:
<div class=“row side-pull-right”>
<div id=“primary” class=“content-area col-sm-12 col-md-8 pull-right”>
</div>
</div>

Can you please check and fix it?

I’m not able to edit the “unite” key in the database to fix this on my own. Is there a trick that I can modify it?

Hi @stefan79,

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

I have tested it on my test site and it’s working fine for me using latest version of Unite theme.

Could you please share me your site URL where it’s happening so that i can troubleshoot it?

Kind Regards,
Movin

Hello,

the site-url is currently http://taekwon-do.whsoft.de/. I’ve installed the theme directly through wordpress backend (it’s Version: 2.0.2)

Best regards,
Stefan

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

Admin Area -> Appearance -> Unite Options -> Other -> Custom CSS

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