Remove the spaces so all the terms run together, making them difficult to read? That’s unusual, but if you want to do so it’s possible. The solution depends on your theme. You need to find which template is responsible for this output. The template may or may not make a call similar to:
the_tags(__('Tags:','theme_text_domain'), ' ', '');
The next to last string is the separator. Make it an empty string to remove spaces, or any other separator string you might prefer.
If you cannot easily determine the template, try a plugin like Template Debugger.
If your theme does not call the_tags()
, you should seek additional help through your theme’s dedicated support channel.