Resolution of Service Portal

User480841
Tera Contributor

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

User480841_1-1669729195442.png

.

2. This is the tablet view

User480841_2-1669729226558.png

.

3. This is the Mobile View

 

User480841_3-1669729251118.png

 

Please help me in this

8 REPLIES 8

@User480841 were you able to get this fixed?


Raghav
MVP 2023
LinkedIn

Hi @RaghavSh 
Still that issue is not fixed.

what page specific css have you applied?


Raghav
MVP 2023
LinkedIn

Damini Sheth
Tera Contributor

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.