How can I center ul elements on a web page? I have checked similar questions on this site and tried using text-align in my CSS file to center the elements, but it didn't work as expected. I also attempted to use margins which did center the elements, but caused issues when accessing the menu from a mobile browser.
<!--Top Menu Nav -->
...
//CSS Center Ul Elements
#custom-bootstrap-menu.navbar-default .collapse>ul{
text-align: center;
}
#custom-bootstrap-menu .collapse>ul{
margin-left: 100px;
margin-top: 30px;
}