How to add some space between the tabs and the left and righ

I am able to create scrollable tabs with this code. But the left and right images come on the top of the last tabl. How can I add

some space between the tabs and the left and right arrows.



Thanks,

Sam

There is no way to define such space programmatically, but you can redefine css style of tab-scroll buttons, so they will look as separate element
Try to add next css style to the page

.dhx_tablist_scroll {
background-color:white;
cursor:pointer;
height:18px;
height:22px !ie;
padding-left:5px;
padding-right:15px;
padding-right:2px !ie;
padding-top:3px;
position:absolute;
right:24px;
top:0;
width:42px;
z-index:6;
}