Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hello,
How to write Media query for label and ValueDisplay, making a responsive mashup, so based on the Screen Resolution, the font size of the Label and ValueDisplay should Increase and Decrease.
Can someone help me to write a Media Query?
Thanks,
Solved! Go to Solution.
Hello,
So after going through some CSS Syntax, following CSS for Media Queries worked for me.
@media only screen and (max-height: 800px), screen and (max-width: 1550px)
{
html{
zoom: .1
}
}
Thanks,
Hello @pshashipreetham You can use the similar example as in this article to define your Media Query and change the Label and Value Display widget size as per different screen resolution.
If looking for a different approach, please let me know about it.
You can also refer to this training on PTC Development Portal for defining Media Queries.
Hey @suverma ,
Can you please share a simple snippet for label font size using Media Query?
Thanks,
Hello,
So after going through some CSS Syntax, following CSS for Media Queries worked for me.
@media only screen and (max-height: 800px), screen and (max-width: 1550px)
{
html{
zoom: .1
}
}
Thanks,