Change border radius of Action button

Add this code to the Custom CSS field on the Settings tab of your Timeline widget’s settings:

 .es-action-button {
   border-radius: 0px!important;
 }
2 Likes

How do you remove the border radius from the HOVER effect? I thought adding the same style to .es-action-button:hover would work but it doesn’t.

1 Like

Hi there, @user3014 and welcome to the Community :waving_hand:

We’ve replaced the previous code with the new one and now everything works fine:

.es-action-button, .es-action-button * {
border-radius: 0px !important; 
}

We’ve also noticed that you used dynamic classes in another CSS codes in your widget. We’ve replaced them with the static classes, which work more stable :slightly_smiling_face: