A question for Toolbar Component

Hi Alexandra,

I want to add a top border for the toolbar component.
Here is my code below:
// new style
.mybar .dhx_mainbar{
border-top:1px solid black;
}
//
{view:"toolbar",
type:"MainBar",
css:"mybar",
elements:[]}

However, it was invalid.	
Could you give me some advises?
Thank you!

Hello,

Border width is set automatically . You can try to use box-shadow:

.mybar{
box-shadow: 0 1px #ADADAD inset;
}

Hi Alexandra,

Yes, I got it.
Thanks you very much!

You are welcome )