I'm doing a beamer presentation and defined some custom itemize bullets, which look like this:
\newcommand{\pro}{\item[\textbf{\color{green}+}]}
\newcommand{\con}{\item[\hspace{-2ex}\textbf{\color{red}--}]}
They work very well, but are not centered under eachother, the \con sign is more indented than the \pro sign.
I tried
\begin{itemize}[align=center]
with no effect.
Is there a way without using enumitem (which isn't quite compatible to beamer) to align the customized bullets in a centered position?
Maybe it's also possible with enumitem and I haven't found the right way to implement it yet?


\hspaceis on the wrong side. Try something like\newcommand{\con}{\item[\textbf{\color{red}--}\hspace{0.05cm}]}– samcarter_is_at_topanswers.xyz Nov 29 '15 at 11:40