[Tex/LaTex] moderncv: bullet points between phone/email/social

moderncvtitles

In the image below there's a bullet point in between the phone number and the email address. I'd like to know how to remove it.

moderncv

I'm using the banking template for moderncv.

Best Answer

The bullet is stored in the macro \makeheaddetailssymbol and is inserted between every element of the title. By default it's defined to be

\newcommand*{\makeheaddetailssymbol}{%
    {~~~{\rmfamily\textbullet}~~~}}% the \rmfamily is required to force Latin Modern fonts when using sans serif, as OMS/lmss/m/n is not defined and gets substituted by OMS/cmsy/m/n
%   internal command to add an element to the footer
%   it collects the elements in a temporary box, and checks when to flush the box

You could update this to

\renewcommand*{\makeheaddetailssymbol}{~~~}

to insert 3 spaces between elements, or however you wish.