Based on the demo provided, look like the issue is the dropdown menu appears all the way to the left. Look like the page is using bootstrap and the left identation is drive by this style.
.dropdown-menu-right {
right: 0;
left: auto;
}
I would suggest to remove the style dropdown-menu-right from this line
<div class="dropdown-menu dropdown-menu-right">
to
<div class="dropdown-menu">
By the way, the html markup is missing a close tag for <ul>