How can I alter my presentation from this:
To this:
With regards to the custom theme color and logo in the bottom left.
Here is my code so far:
\documentclass[hyperref={pdfpagelabels=false}]{beamer}
\usepackage{lmodern}
\usetheme{Szeged}
\usetheme[compress]{Singapore}
\usepackage{textpos}
%Removes gradient color
\makeatletter
\AtBeginDocument{%
{
\usebeamercolor{section in head/foot}
}
\pgfdeclareverticalshading{beamer@headfade}{\paperwidth}
{%
color(0cm)=(structure.fg!0!bg);
color(1.25cm)=(structure.fg!0!bg)%
}
\setbeamercolor{section in head/foot}{bg=}
}
\addtoheadtemplate{\pgfuseshading{beamer@headfade}\vskip-1.25cm}{}
\makeatother
\begin{document}
\section{Section no.1}
\begin{frame}
\frametitle{frame title}
Each frame should have a title.
\end{frame}
\subsection{Subsection no.1.1 }
\end{document}
Hope this is not a duplicate, but I could'nt fine the solution anywhere else.


