Is there any CSS that can remove the links at the bottom of the maps by chance? I've never been fond of them and seeing it on the world map was the final straw for me
This removes them:
.col-md-12.col-lg-12 {
display: none;
}
You can remove any element by finding out its name and setting it to "display: none;". Unfortunately this will also remove other things on site that use this same container element, if there are any. I looked around a bit and didn't see any difference, but there are many pages on Subeta. Hopefully someone comes along with a better solution.