I would like to insert a section in my curriculum vitae where my skills are graphically represented(I'm using this template -> it.overleaf.com/latex/templates/forty-seconds-cv/pztcktmyngsk). Since the spaces are limited I would like to delete the image that precedes the description of the skill (which in this case is the blue arrow). How could I do ?
% uniform icon style for all skill icons, e.g. flags or fontawesome icons
\newcommand{\cvicon}[1]{\makebox[1em]{\color{iconcolor} #1}}
% \pointskill[<indent>]{<description>}{<points>}[<maxpoints>] creates
% | [indent] description \hfill ● ● ● ○ ○ |
% -- inspired by arravc.cls by LianTze Lim: https://github.com/liantze/AltaCV
\NewDocumentCommand{\pointskill}{ O{0em} m m m O{5} }{%
\hspace{#1} \cvicon{#2} ~ #3 \hfill%
\foreach \x in {1,...,#5}{%
\space%
{\ifnumgreater{\x}{#4}{\color{skillbg}}{\color{iconcolor}}% from etoolbox
% don't use totalheight; see https://tex.stackexchange.com/a/41014
\raisebox{0.5\height-0.4ex}{\scriptsize\faCircle}%
}
}\par%
}
graphic example of how it looks if I call \pointskill{►}{Python}{3} :

cvicon{#2}and adjust the command in consequence, by writing0{4}and writing #2, #3 and #4 instead of #3, #4, #5. I post this as a comment because I have not tested it – Jes Mar 12 '21 at 17:48