Hi,
You can try with this solution:
1.If you're familiar with CSS, go to file: root/templates/ja_mason (your default template)/css/custom.css (create this file if it doesn't exist)
And add this code:
@media screen and (min-width: 2200px) {
div.t3-wrapper.menu-vertical {
margin: 0 auto;
}
div.t3-wrapper.menu-vertical #t3-header {
left: auto;
margin-left: -240px;
}
}
- In case you can work with LESS, you can backup this file: root/templates/ja_mason/less/style.less and updated with attached file.
In this new file, you can see the same change in approx line 164:
// Larger screen
@media screen and (min-width: 2200px) {
&.menu-vertical {
margin: 0 auto;
#t3-header {
left: auto;
margin-left: -240px;
}
}
}