How can I move the phone icon next to the menu icon in mobile view?

Hi

Please can u provide a solution to moving phone icon next to menu icon on mobile view, thanks (attached example below)

my store:

URL: homeoutletdirect.com

Theme: Warehouse

wanted result:

Hi @bennyhenders ,

Please add below code in Header.liquid just above the


          **800-495-0144**
        

Add below css code in theme.css

@media (max-width: 767px){
.header-phone-icon.on-mobile {
    display: block !important;
}
.header-phone-icon{
    display:none
}
}
.header-phone-icon.on-mobile {
    display: none;
}

Hope this helps

let me know if you have any queries.

Regards,

Reena

i’ve already got the code. i want some code to move the icon next to the hamburger icon

The above code will move the icon next ti the hamburger icon

that code does not work. i would like css code to move it. thanks