Mobile/Tablet Buttons Broken

Hello!

I just downloaded this theme, and it’s lovely! It’s easy to use and customization is super easy to do. The only problem is when I go into anything other then full screen desktop, the buttons break. For example “Continue Reading” and “Go Back to <Previous Post>” does not work. Any suggestions on how to fix this?

Hi @kait,

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) {
	.side-pull-left #primary{
		float: left;
	}
	.side-pull-right #primary{
		float: right;
	}
}

Best Regards,
Movin

Hey @Movin,

This fix didn’t work unfortunately D: But thank you for the quick reply! Do you have any other suggestions?

Could you please share me the page URL from your site where it is not working correctly so that i can troubleshoot it?

Oh sorry! Here’s the link http://mcsc.cs.laurentian.ca/wptemp/wordpress/

Please try using below CSS code instead of above CSS code.

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

Its perfect! Thank you so much for your help!

You are most welcome here :slight_smile: