My current dilemma is with my Bootstrap-based website. I am trying to make it unresponsive for devices with a screen width of less than 768px, but responsive as usual for widths greater than or equal to 768px.
This is what I have attempted so far. In my global viewport setting:
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
I have also experimented with adding a CSS snippet like this:
@media (max-width: 768px) {
@viewport {
width: 1024px !important;
}
}
However, this method did not produce the desired result of mimicking a width of 1024px. Any advice from those who have encountered similar challenges would be greatly appreciated. Thank you.