Been trying to figure out how to move the logo so it is sitting on the left-hand side of the header using the Evo template but can't get my head around it.
Can anyone make a suggestion on how to do this please?
Been trying to figure out how to move the logo so it is sitting on the left-hand side of the header using the Evo template but can't get my head around it. Can anyone make a suggestion on how to do this please? |
Start here. Edit templates/tmpl_evo/_sub_header.html https://www.deanbassett.com |
Thanks Deano. After I moved the position of that cell in templates/tmpl_evo/_sub_header.html, all I had to do was then edit templates/tmpl_evo/css/general.css.
td.sys_logo_wrapper {
position: relative;
width: 100%;
text-align: center;
}
and changed the text-align from center to left
td.sys_logo_wrapper {
position: relative;
width: 100%;
text-align: left;
}
After that I cleared the cache, refreshed my page and the logo was now on the left-hand side of the header.
Thank you for your help. Much appreciated.
|