I would like to add an additional row to my Wordpress BootStrap Navigation

后端 未结 1 1425
伪装坚强ぢ
伪装坚强ぢ 2021-01-29 11:41

I have a simple website which I would like to add a row above the navigation that would contain a phone number and maybe some social links.

I am a theme called Hestia Pr

相关标签:
1条回答
  • 2021-01-29 12:21

    Your theme is built with bootstrap you can check your theme files and go to header.php check the the tag <header> and inside it you can add:

    <header>
    .....
    
    
    <div class="row">
      <div class="container">
         <div class="col-sm-4">
           Telephone
         </div>
         <div class="col-sm-4">
           email
         </div>
         <div class="col-sm-4">
           support
         </div>
      </div>
    </div>
    </header>
    

    thats it :)

    0 讨论(0)
提交回复
热议问题