htmlcssstylesmybb

How to position menu in center and remove lines between text?


I started to work on personal forum, and wanted to integrate menu into header. i inserted links into template, but for some reason, menu is right alligned and have some lines between links. How to center the entire menu, and remove that lines between each link? Problem can be seen here.

enter image description here


Solution

  • .menuwrap {
       border: none;
    }
    
    .majestic {
        display: flex;
        justify-content: center;
    }
    
    .majestic li a {
        border: none;
    }
    

    Badabing badaboom. I'm writing border: none; here but if you have access to the CSS just delete the border-left and border-right styles that are in there already.