Adding tagline under logo
Step 1: Uploading Site Logo
- Login to Dashboard
- Navigate to Appearance -> Customize
- You will redirect to new page. Expand the Header panel
- Expand “Heaver Logo” section
- Select “logo” from Logo Type drop down list
- Upload the logo at Logo Image (Regular) section
- Click on “Save & Publish” button
Step 2: Setup Header Layout
- Navigate to Appearance -> Customize page
- Expand the Header panel
- Click on Header Layout section
- Select “Nav Centered” from Layout Drop Down list
- Click on “Save & Publish” button
- Close the customizer now
When Menu is Center Align
Right now there have no hook or filter for Beaver Builder Site logo. So we shall directly modify a core file. Copy the “nav-centered.php” file from parent theme’s includes folder and put into your child theme’s includes folder. Now open this file on Notepad or any PHP editor and replace the full code with this one:
nav-centered.php file
itemscope="itemscope" itemtype="http://schema.org/WPHeader">
When Menu is Right Align
Copy the “nav-right.php” file from parent theme’s includes folder and put into your child theme’s includes folder. Now open this file on Notepad or any PHP editor and replace the full code with this one:
nav-right.php file
itemscope="itemscope" itemtype="http://schema.org/WPHeader">
When Menu Below the Site Logo
Copy the “nav-bottom.php” file from parent theme’s includes folder and put into your child theme’s includes folder. Now open this file on Notepad or any PHP editor and replace the full code with this one:
nav-bottom.php file
itemscope="itemscope" itemtype="http://schema.org/WPHeader">
That’s it. Refresh your site and see the effect.