I'd like to add a header containing of a picture (aligned left with text), multirow text and a picture (aligned right with the text). I found fancyhdr which has an inacceptably compilcated documentation, I hope someone has experience. I'd like the complete header to have a blue background spanning over the full textwidth (therefore putting pictures in lhead and rhead doesn't seem to be useful. My markup looks like this:
\usepackage{fancyhdr}
\definecolor{arylideyellow}{rgb}{0.91, 0.84, 0.42}
\newcommand{\myboxheader}[1]{{\color{blue} #1}}
\newcommand{\mybox}[1]{\fcolorbox{gray}{arylideyellow}{#1}}
\pagestyle{fancy}
%\lhead{\colorbox{blue}{\includegraphics[height=1cm]{logo1.png} }}
\chead{\makebox[\textwidth]{\colorbox{blue}{\includegraphics[height=1cm]{logo1.png} \hfill my multiline header (multiline with \newline or \\?) \hfill \includegraphics[height=1cm]{logo2.png} }}}
%\rhead{\colorbox{blue}{\includegraphics[height=1cm]{logo2.png} }}
\cfoot{I don't care for the footer so far!}
\begin{document}
...
\end{document}
It is not moving the two pictures sufficiently to the left and to the right so that they are in line with the text borders.
I checked questions like How do you increase headrule length in fancyhdr? or http://www.latex-community.org/forum/viewtopic.php?f=45&t=6204, but they all assume that one can understand the structure of this large set of variables which are put in insufficient relation to each other in the docs, which doesn't apply to me...
Addendum from the comment:

Screenshot of the gap between logos A,B and the center part. I referred with "center part" to everything except the logos.
