How can I move the logo to the left of header?

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?

Quote · 14 Jan 2016

Start here.

Edit templates/tmpl_evo/_sub_header.html

Look for this

                        <td class="sys_search_wrapper">__main_search__</td>
                        <td class="sys_logo_wrapper">
                            <div class="sys_logo_wrapper_cnt bx-def-padding-sec-leftright">__main_logo__</div>
                        </td>
                        <td class="sys_menu_wrapper">__service_menu__</td>

Move the second(center)table cell to the front so you have this.

                        <td class="sys_logo_wrapper">
                            <div class="sys_logo_wrapper_cnt bx-def-padding-sec-leftright">__main_logo__</div>
                        </td>
                        <td class="sys_search_wrapper">__main_search__</td>
                        <td class="sys_menu_wrapper">__service_menu__</td>


Save.

Now your logo will be in the first table cell on the left. You will still most likley need to play with CSS settings for sys_logo_wrapper, sys_search_wrapper and sys_menu_wrapper to get things to look the way you want. Without a site url so see what your current header looks like, i cannot be more specific.

https://www.deanbassett.com
Quote · 14 Jan 2016

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.
Quote · 14 Jan 2016
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.