My website looks great on all devices and desktop, but I want to set a different viewport for iPad. I would like the iPad to have the same width as my desktop version, which is 1100px wide. Currently, the site is designed with percentages and ems up to (max-device-width: 736px), and then it switches to the iPad layout. However, I need to change the viewport for iPad.
I am currently using this code:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Although this code works well, I now need to adjust the viewport to content="width=1100". Unfortunately, I cannot simply do this in CSS with @mediaquery without having to make significant changes to other CSS styles.
How can I set a different viewport specifically for the iPad?