Quote from
qualmy91 on May 29, 2020, 9:55 am
Hey @d3fcon,
I checked your website with chrome and the Header Container is not visible anymore. Do you still have this problems?
ul#primary-menu > li.menu-item {
margin: 0 10px;
}
This css code reduce the spacing of your menu. Just change the 10px to another value to change the spacing. The actual value is 15px. If there are no changes add !important:
ul#primary-menu > li.menu-item {
margin: 0 10px !important;
}
Always turn off the caching of your Browser and the Website while changing CSS Code. If not the changes will not appear on your browser instantly.
Hey @d3fcon,
I checked your website with chrome and the Header Container is not visible anymore. Do you still have this problems?
ul#primary-menu > li.menu-item {
margin: 0 10px;
}
This css code reduce the spacing of your menu. Just change the 10px to another value to change the spacing. The actual value is 15px. If there are no changes add !important:
ul#primary-menu > li.menu-item {
margin: 0 10px !important;
}
Always turn off the caching of your Browser and the Website while changing CSS Code. If not the changes will not appear on your browser instantly.
Asgaros has reacted to this post.