I'm having an issue with my footer. It displays correctly on desktop, but on mobile it's aligned to the right of the screen instead of centered. Can anyone help me troubleshoot this? Thank you!
<footer class="footer">
<div class="container">
<div class="row">
<div style="float:none;margin:0 auto;" id="toplist" class="col-md-12 col-xs-3 text-center">
<ul >
<a style="color:white;" href="https://example.com/"><li id="first" style="list-style:none;display: inline;">HOME</li></a>
<a style="color:white;" href="https://example.com/service"><li style="list-style:none;display: inline;padding-left:30px;">SERVICE</li></a>
<a style="color:white;" href="https://example.com/examples"><li style="list-style:none;display: inline;padding-left:30px;">EXAMPLES</li></a>
<a style="color:white;" href="https://example.com/order"><li style="list-style:none;display: inline;padding-left:30px;">ORDER</li></a>
<a style="color:white;" href="https://example.com/contact"><li style="list-style:none;display: inline;padding-left:30px;">CONTACT</li></a>
</ul>
</div>
<div id="hello" class="col-md-12 col-xs-9 text-center">
© 2017 site.com
</div>
</div>
</div>
</div>
</footer>