Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #263287

    Hi

    Is there a way to add a tel number in the header on the right hand side?

    Thanks

    #263288

    Enfold Theme Options -> header layout -> extra elements

    does that help?

    #263293

    Sorry Ive tried that but I need it in the same area as the logo not the top bar

    #263345

    depending on how good you’re with coding,the logo is added at line 438 in enfold\framework\php\function-set-avia-frontend.php

    $logo = "<$headline_type class='logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>";
    

    something like:

    $logo = "<$headline_type class='logo'><a href='".$link."'>".$logo."$sub</a><div style=\"float:right;\">my text</div></$headline_type>";
    

    !!!but i would wait for the real support because i dont like my own solution and it might get overwritten with an enfold update!!!

    #263912

    thanks thats great! I need to change the css for the menu icon when it scales down to mobile only )move it up as its to close to tel number), do you know where this is?

    #263918

    inside the custom.css in your enfold theme there is a extra section for the mobile css.

    Or you use this in quick css:

    @media only screen and (max-width: 767px) {
    #advanced_menu_toggle {
    your css
    }
    }

    you can give the div from my previous answer a class or id to target it easier.
    A link to your site would also help to see how it looks.

    #265335

    Hey!

    You can add extra elements to the includes>helper-main-menu.php as needed. Doing so in a child theme (put the same file in an includes folder) will keep it safe when updating.

    Cheers!
    Devin

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