ok... trying o separe them both...
Did everything possible, and discovered tht the dashboard has to move all parts o it at the same time... but could manage to get the toolbar to the top of the dashboard..
at definition 923, look for
code:
<MeArea id=atom(idMeArea) layout=borderlayout()>
only has 1 occurence.
Just before that, you can find
code:
<element layoutpos=top layout=filllayout()>
<element layout=filllayout() layoutpos=top>
<element layout=filllayout()>
Just change to
code:
<element layoutpos=bottom layout=filllayout()>
<element layout=filllayout() layoutpos=top>
<element layout=filllayout()>
then the whole dashboard will move down.
Then... to make the toolbar go a little higher, so that it stays next to the contact list, look for <MeArea id=atom(idMeArea) layout=borderlayout()>, then in the next line you should have
code:
<element layoutpos=client layout=borderlayout() padding=rect(0,0,0,3) ID=Atom(ai201)>
just change the layoutpos=client to layoutpos=bottom [that will move down the display pic part of the dashboard] and you're done