Resolution of Service Portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2022 05:47 AM
Hi Team,
whenever I'm trying to seeing the screen in Tablet & Mobile view but their resolution is not showing correctly.
what to do in this?
Please refer below images.
1. This is laptop page view
.
2. This is the tablet view
.
3. This is the Mobile View
Please help me in this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2022 07:28 AM
@User480841 were you able to get this fixed?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2022 10:19 PM
Hi @RaghavSh
Still that issue is not fixed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2022 10:21 PM
what page specific css have you applied?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2022 10:46 PM
Hi,
you can try the below one, where .message-icon will be your header class. You can adjust the right, left, and min-width properties as per your view.
@media screen and (min-width: 992px) {
.message-icon {
right: 8%;
}
}
@media screen and (min-width: 1224px) {
.message-icon {
right: 9%;
}
}
@media screen and (min-width: 1690px) {
.message-icon {
right: 16%;
}
}
@media screen and (min-width: 1770px) {
.message-icon {
right: 17.6%;
}
}
@media screen and (min-width: 1920px) {
.message-icon {
right: 21%;
}
}
@media screen and (min-width: 1980px) {
.message-icon {
right: 21.5%;
}
}
@media screen and (min-width: 2150px) {
.message-icon {
right: 27%;
}
}
@media screen and (min-width: 2350px) {
.message-icon {
right: 29%;
}
}
@media screen and (min-width: 2600px) {
.message-icon {
right: 31%;
}
}
@media screen and (min-width: 2850px) {
.message-icon {
right: 33%;
}
}
Mark the answer as Correct or Helpful based on impact.