Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #187268

    Hi guys

    On this page: http://isokvik.dk.linux31.unoeuro-server.com/ I would like to:
    1) make the header higher,
    2) having a (big) telephone number over the navigation. And what do I do in the responsive design to not have the phone number disappear.

    Thanks in advance.

    Martin

    • This topic was modified 11 years ago by mar10nlund.
    #187553

    Anybody out there? :-)

    #187744

    Hi!

    1) Please go to wp-content\themes\enfold\js folder and open avia.js file and find

    el_height       = $(elements).filter(':first').height(),

    and change it to

    el_height       = 120,

    120 here represents 120pixels. Then add following code to Quick CSS in Enfold theme options under Styling tab

    .fixed_header #main { padding-top: 120px; }

    2) In WordPress dashboard, go to Appearance > Editor and open Header.php file and find

    wp_nav_menu($args);
                                echo '</nav>';

    and add following line right under it

    echo "<div class='phoneno'>tel</div>";

    then add following code to Quick CSS in Enfold theme options under Styling tab

    .phoneno {
    float: right;
    font-size: 20px;
    margin-top: -25px;
    }

    Cheers!
    Yigit

    #187746

    Thanks man! I’ll try that :-)

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Tweaking the header’ is closed to new replies.