skip to Main Content

i have a website build in wordpress, the url for the website is like this:

enter link description here

i have imported demo contents for the theme and i am able to edit the page content except header section where there is the top bar, logo and menu. i tried using ftp but when i acces the header page its showing like this:

<?php

    efuel_the_pageloader_overlay();
    get_template_part( 'navbar' ); 

    $pageheader_layout = efuel_get_pageheader_layout();
    $efuel_header_class = efuel_get_pageheader_class();

    if ( $pageheader_layout != 'disabled' ) : ?>
    <header class="page-header  <?php echo esc_attr($efuel_header_class); ?>">
        <div class="container">   
            <?php
                efuel_the_h1();         
                efuel_the_breadcrumbs();
            ?>      
        </div>      
    </header>

is there anyway to fix it ot is there anyway or plugin to edit the topbar and logo in wordpress, thanks in advance

2

Answers


  1. I’d have to see the customizable options the theme offers specifically, but in general, the header menu nav items are controlled within the Appearance > Menus section of the admin.

    The logo and top bar, depending on the theme, will be located in the Appearance > Customize > Header section

    Login or Signup to reply.
  2. According to the theme documentation you have to go to Appearance -> Theme Settings on the Header tab. You should find everything you need there

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search