I am making a joomla module and I want it to be responsive for different mobile devices.
As a joomla module injects some contents in a specific part of the whole page, so other contents of the page may not be responsive unless the template is responsive.
In this case if the whole page template is not responsive, how do I make the content of my that module responsive?
I read some articles about making whole site responsive but not some parts of content. So then to start achieving my goal, if this meta is necessary to be put in the page -
<meta name="viewport" content="width=device-width">
How it affects other non-responsive content of the site page? On the other hand, is it difficult and bad practice to show responsiveness for some parts of content instead of whole?
My approach: I've tried to use t bootstrap responsive feature by putting all classes in bootstrap.css and bootstrap-responsive.css under a custom class ".container_class" and placed my all content in module under that class so that only module content inherits bootstrap styles, and without declaring above meta content, I saw that if I resize browser, content of the module resized but did not test fully taking into account some other things.
So is this approach fruitful..? Or how do I achieve my goal?