Skip to main content
15-Moonstone
March 26, 2020
Solved

Move button widget

  • March 26, 2020
  • 1 reply
  • 1302 views

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;
}

Best answer by 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

1 reply

17-Peridot
March 26, 2020

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

15-Moonstone
March 26, 2020

Thank you very much