0
The question is this: I have a call system (GLPI) that by default is responsive, but does not look cool in mobile version. I’m studying javascript >> React and then try to create a full mobile version.
My environment is as follows:
The current system is: called.com.br/glpi/called
I have a folder: called.com.br/glpi/mobile
And I have a file with a simple javascript to redirect if mobile or PC.
My question is:
It is possible for me to create within called.com.br/glpi/mobile an index.html or index.php and within it link the called.com.br/glpi/called and this have the css changed to load a more mobile friendly version?
And why would not be able to index? Just you put the correct path of . CSS that is in the other folder if that’s what I understood... Or else make another CSS with an override of the classes you need to change wave giving one . CSS with equal name classes but different properties
– hugocsl
Use media queries to define css for different screen sizes. https://getbootstrap.com/docs/4.1/layout/overview/
– Adriano Silva
I will see these tips. Thank you.
– Sandson Costa