Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
As attached in file,I need to move downarrow button left/right using css.It can be done using button properties but I want to move it dynamically using css. Can you help me with custom css code?
My code given below doesn't work :
.root_pagemashupcontainer-6_button-372wbb #root_pagemashupcontainer-6_button-372-bounding-box
{
left : 360px !important;
}
Solved! Go to Solution.
Hi,
Try a new class instead of using ids:
.myclass {
left:360px !important;
}
And assign myclass to CustomClass property of button widget (I used ptcs-button).
Hope it helps,
Raluca Edu
Hi,
Try a new class instead of using ids:
.myclass {
left:360px !important;
}
And assign myclass to CustomClass property of button widget (I used ptcs-button).
Hope it helps,
Raluca Edu
Thank you very much