Hi, I would like to know if is there any way to set the OK/CANCEL buttons at the middle of the rad confim window. I'm seeing both buttons left justified.
I have been searching for any attribute but I couldn't find anything.
Thanks,
François.
2 Answers, 1 is accepted
0
George
Telerik team
answered on 31 Jan 2008, 01:37 PM
Hello franchute,
In order to move/stylize the buttons you should implemented a JavaScript or CSS "hack" overriding this behavior.
Here is a sample CSS code referring to the buttons' style which you should put in your page header:
<style type="text/css">
a.radwindowbutton
{
margin-left: 25px !important;
}
</style>
Please note that the !important keyword should present in each CSS style setting.