Buy me a coffee

Add a Phone Number on right of Logo

To add a phone number on right of Logo, you can do these
#1. Use this code to Custom CSS box.

a.header-phone {
    font-size: 20px;
    color: #000;
    margin-left: 10px;
}
div.header-title>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

Add A Phone Number On Right Of Logo 1 Min

#2. Use this code to Code Injection > Footer

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $('<a href="tel:0123456789" class="header-phone">Call: 0123.456.789</a>').insertAfter('div.header-title a');
});
</script>

Add A Phone Number On Right Of Logo 2 Min

#3. Result

Add A Phone Number On Right Of Logo 3 Min