Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1215749

    i want to remove this raw but i dont see in the template can you please tell me how can i remove it

    #1215750
    This reply has been marked as private.
    #1215904

    Hi,
    Please try disabling the sidebar for the page:
    2020-05-24_204233.png

    Best regards,
    Mike

    #1216408

    done thank you sir also i want to add name next to the logo how can i do that

    #1216462

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<span class='logo-title logo-subtitle'>";
      $sub .= "test";
      $sub .= "</span>";
      return $sub;
    }

    Please adjust the “test” to the text you wish
    then and add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    
    #top .logo, #top .logo a {
        overflow: visible;
    }
    
    #top .logo-subtitle {
        font-size: 18px !important;
        top: 30px !important;
        position: absolute;
        right: -50px;
    }

    You will probably want to style your text more, feel free to adjust the css.

    Best regards,
    Mike

    #1217362

    sir the wording is not showing properly next to logo can you tell me how to adjust it : http://oasisconsulting.co.tz/
    the word oasis consulting i want it to be in straight horizontal line

    #1217372

    i want the logo to be next to it and not down

    #1217374

    it should be in menu bar

    #1217674

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #header span.logo-title.logo-subtitle {
    	top: 30px !important;
        position: absolute;
        width: 400px;
        left: 80px;
    }
    #top #header.header-scrolled span.logo-title.logo-subtitle {
    	top: 5px !important;
    }

    Best regards,
    Mike

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.