Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
Hi Community team,
I have two widgets one date picker and another one button to come up in modal popup but the css i have applied is not visible there which is showing up when I'm normally opening the popup mashup as in not from navigation.
version is 8.5.7
Thanks,
Shraddha
Solved! Go to Solution.
hi @shraddha_21 ,
I face this problem daily, so for the CSS you have applied, you need to put the #root before it. The #root you will get it when you open the popup from runtime and do an inspection on it.. for example:
So you need write code like:
#cell_Section_Aggregation_Flow-73_navigation-60-popup_panel-351 {
background: transparent;
-ms-filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
filter: none;
border: none;
}
Thanks,
hi @shraddha_21 ,
I face this problem daily, so for the CSS you have applied, you need to put the #root before it. The #root you will get it when you open the popup from runtime and do an inspection on it.. for example:
So you need write code like:
#cell_Section_Aggregation_Flow-73_navigation-60-popup_panel-351 {
background: transparent;
-ms-filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
filter: none;
border: none;
}
Thanks,