Ich habe icomoon Schriftart auf meiner Speisekarte verwendet. Ich konnte das Schriftart-Symbol des BILD-Menüs nicht ändern. Anfangs war es BLOG-Symbol. Und jetzt muss ich es mit dem Symbol von BILD (KAMERA) ändern. Wie ändert man den Inhalt von BLOG in PICTURE?Wie ändere ich den Inhalt von iconmoon font?
HTML TEIL
<nav id="menu" class="nav">
<ul>
<li>
<a href="#"> <span class="icon"> <i aria-hidden="true" class="icon-home"></i> </span>
<span>Home</span>
</a>
</li>
<li>
<a href="#"> <span class="icon"> <i aria-hidden="true" class="icon-portfolio"></i></span>
<span>About Us</span>
</a>
</li>
<li>
<a href="#"> <span class="icon"> <i aria-hidden="true" class="icon-camera"></i></span>
<span>PICTURE</span>
</a>
</li>
</ul>
</nav>
CSS TEIL
@font-face {
font-family: 'icomoon';
src: url('../fonts/icomoon.eot');
src: url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'),
url('../fonts/icomoon.woff') format('woff'),
url('../fonts/icomoon.ttf') format('truetype'),
url('../fonts/icomoon.svg#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'icomoon';
src: url('../fonts/icomoon.svg#icomoon') format('svg');
};
.icon-camera, .icon-home, .icon-portfolio {
font-family: 'icomoon';
speak: none;
font-style: normal;
-webkit-font-smoothing: antialiased;
}
.icon-camera:before { content: "\e600"; }
.icon-home:before { content: "\e002"; }
.icon-portfolio:before { content: "\e003";}
a, li { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
Vielen Dank die Idee von FontAwesome arbeitete ... – Jklyn