I try to make my text overlay over the stealth, as if that part of stealth is covered by the text and thus invisible.
What I have now is
\documentclass[a4paper]{article}
\usepackage{tikz}
\usetikzlibrary{backgrounds, calc, positioning, fit}
\begin{document}
\begin{tikzpicture}
\node[draw] (a) {A node};
\node[draw,align=center] (b) at (0,-5) {Another\\node};
\draw[-stealth] (a.west) --++ (-1, 0) |- (b.west)node[pos=0.4, above]{Text};
\end{tikzpicture}
\end{document}
which gives me

As can be seen the stealth "goes through" the text node, which is undesired.
How can I fix it?

decorations.text. – Claudio Fiandrino Nov 12 '13 at 06:26fill=whiteto the node. You can use thedecorations.markingslibrary (which doesn’t work good for lines with an arrow tip, but you could only use the vertical part) or you place the node first and then you connect the nodes. See path with both mark connection node and arrow tip – Qrrbrbirlbel Nov 12 '13 at 06:40