Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #26448

    Hello all, I would like to use a font icon in the main menu, similar to the search icon on the very right.

    It would be cool to have the Home House Icon [av_font_icon icon="34" size="40px"] on the left side.

    Does anybody has an Idea how to manage this?

    Writing the shortcode into the menu item input field “displayed name”(german “angezeigter name”) doesn’t work.

    Thyx in advance!

    chilli-mind

    #130449

    Hi,

    You can do this.

    . I tried using Custom Links and entered this as a label, but i think it will also work on regular labels for menu items: (if you dont see a house icon in code below but gibberish, you need to create a page that uses the icon you want in some other way (icon box for example) then view the source and copy it from there, just make sure you are keeping the classes i am using in css i posted or it will not work. It would be best if you copied the code i pasted here.

    In Appearance > Menu paste this code as the Navigation Label

    <div class="menu-home avia-font-entypo-fontello">⌂</div>

    and add this css code to your /css/custom.css or to quick css

    .menu-home.avia-font-entypo-fontello {
    color: blue;
    font-size: 2.4em;
    top: -5px;
    position: relative;
    opacity: 100 !important;
    display: block !important;
    }

    and if you want a change of color on hover you can add this block of css

    .menu-home.avia-font-entypo-fontello:hover {
    color: green;
    }

    Mine turned out like this http://i.imgur.com/4jR3WCk.png

    Thanks,

    Nick

    #130450

    Thx Nick! Worked very fine!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Font Icon in Header’ is closed to new replies.