Thank you for contacting DesignReset.
Follow the below steps :
1. Open the structure.css file
2. Find (.topbar-nav.header nav#topbar) class
If you look at the original code it will be like :
.topbar-nav.header nav#topbar {
width: 100%;
max-width: 1140px;
0 auto; /// Changes will be made here - old code
position: static!important;
}
Now new code will be
Shift menus to RIGHT :
.topbar-nav.header nav#topbar {
width: 100%;
max-width: 1140px;
0 0 0 auto; /// Changes will be made here - new code
position: static!important;
}
* Please check image example below
Shift menus to LEFT :
.topbar-nav.header nav#topbar {
width: 100%;
max-width: 1140px;
0 auto 0 0; /// Changes will be made here - new code
position: static!important;
}
* Please check image example below
** The changes are made in the margin only
Kindest Regards,
DesignReset Team
RIGHT ALIGN

