This topic has 2 replies, 2 voices, and was last updated 4 years, 11 months ago ago by Olga Barlow
Hi
1) I want to change the alignment of menu items slightly towards the right, away from the logo, so that the space to the right gets covered, and it looks symmetric.
2) how to change the effect when my webpage loads? Its currently a black background with 100% written after it loads.
Thanks
Hello,
1) Add the following code to Theme Options > Custom CSS
@media only screen and (min-width:992px){
.menu-main-container > ul:before, .menu-main-container > ul:after {
content: '';
display: table;
clear: both;
}
.menu-main-container > ul {
display: flex;
justify-content: center;
}
}
2) This is preloader. If you want to disable it go to Theme Options > General > disable Site preloader option.
Regards
You must be logged in to reply to this topic.Log in/Sign up