cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X

Move button widget

krishnakomal123
14-Alexandrite

Move button widget

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

1 ACCEPTED SOLUTION

Accepted Solutions

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

View solution in original post

2 REPLIES 2

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

Top Tags