[Tex/LaTex] Changing the background color in poster template

beamerpostertemplates

I am making a conference poster using a template provided in this link.

http://www.latextemplates.com/template/dreuw-deselaers-poster

I want to change the background color from gray to white and
also, I want to reduce the size of the header area ( Title area).
Please help me with this issue.

Best Answer

This is a summary of what already stated in the comments.

  1. Block background color

It can be changed with \setbeamercolor*{block body}{bg=<color>,fg=black} directly in the provided .sty file

  1. Title alignment

It can be changed by substituting

\usebeamercolor{title in headline}{\color{fg}\textbf{\LARGE{\inserttitle}}\\[1ex]} 

with

{\centering\usebeamercolor{title in headline}{\color{fg}\textbf{\LARGE{\inserttitle}}\\[1ex]}\par} 

in the .sty file.

This will center only the title, authors and institute will stay right aligned. If everything needs to be centered it is necessary to replace the first occourrence of \raggedright with \centering into \begin{beamercolorbox}[wd=\paperwidth]{headline} (again it can be done directly in the provided .sty file)