I am looking for a command to align text to the itemize's bullet.
{\addtolength{\leftskip}{10mm}
\textbf{Short text in here}
\begin{itemize}
\item A description of..
\item Another description of..
\end{itemize}
\par
My text and items are nicely moved 10mm towards right due to the \leftskip{10mm} but it won't align just right.
Now, I want the bullet from my item to left align with my "Short text in here". I need a command to offset my items a little to the right. Is there any way to handle that?
I hope this makes sense. Otherwise, don't hesitate to ask once again! :-)


widekey gives a simpler syntax. Besides I wonder whether the O.P. wnats the bullets to be 10mm from the (text) left margin. In the latter case a simple\noindentbefore \textbf{Short text in here} and a[wide=\leftskip]would do. – Bernard Aug 07 '14 at 11:10@Bernard: Yes, I want the text to be offset 10 mm from the left margin.
– user3389689 Aug 07 '14 at 11:52\begin{itemize}[wide=\leftskip]as told by Bernard. Put a\noindentbefore\textbf{Short text in here}though. – Aug 08 '14 at 08:03