@rafat by 'tabs, do you mean the main menu? Sales, Purchases, Items and Inventory, etc?
If so:-
In file
\themes\default\default.css
Line 184
Change this:-
div.tabs {
padding: 3px 0 0 0;
background: none transparent scroll repeat 0% 0%;
white-space: nowrap;
border-collapse: collapse;
border-bottom: 1px solid #8cacbb;
}
to this:-
div.tabs {
padding: 3px 0 0 0;
background: none transparent scroll repeat 0% 0%;
white-space: nowrap;
border-collapse: collapse;
border-bottom: 1px solid #8cacbb;
float: right;
}
Do the main menu items need to be reordered so that 'Sales' is on the right and 'Setup' is on the left? I'm not sure how to do that.
@rafat Anything else not aligned correctly? (The logout bar doesn't look quite right to me)
If so:-
In file
\themes\default\default.css - Line 288
Change this:-
.headingtext3 {
font-weight: bold;
font-size: 10px;
color: black;
}
to this:-
.headingtext3 {
font-weight: bold;
font-size: 10px;
color: black;
text-align: right;
}
And
On Line 163 change this:-
.logoutBarRight {
text-align: right;
}
to this:-
.logoutBarRight {
text-align: left;
}