Brand Logo And Text appear together

Excuse me,
I want to ask, how do you make the brand logo and text appear together in the navbar?
where do I put the code?
Is there any code that is simpler than this?

<nav class="navbar navbar-light bg-light">
   <div class="container-fluid">
     <a class="navbar-brand" href="#">
       <img src="/docs/5.0/assets/brand/bootstrap-logo.svg" alt="" width="30" height="24" class="d-inline-block align-text-top">
       PHPMaker2024
     </a>
   </div>
</nav>

You better use Auto JS Template.

I don’t understand the Auto JS Template, can you provide an example of the code snippet, and where to place it?
help me. Thank You

You may see some examples/implementation of Auto JS Template from the generated views/layout.php file. Search for the code ew-js-template in that file.

Then you may refer to the related code and put it in Page_Head or Page_Foot server event, after that modify that code to the one that suits your needs.

You may Inspect HTML element and find out what part you want to replace.

when I tried this code it worked but the main menu is below so it doesn’t disappear, how do I do it?

<aside class="main-sidebar sidebar-dark-blue">
         <div class="brand-container">
            
             <a href="home" class="brand-link">
             <img src='images/logo.png' width='30px' height='30px'>
                 <span class="brand-text">Application Name</span>
             </a>
                     </div>
</aside>

Rachman wrote:

when I tried this code it worked but the main menu is below so it doesn’t disappear,

You may want to explain what you meant by “the main menu is below so it doesn’t disappear”.