dzilupl Posted October 7, 2013 Share Posted October 7, 2013 (edited) Witam W jaki sposób wrzucić czcionką która będzie generowana z poziomu serwera/strony ze sklepem a nie systemu na którym sklep będzie przeglądany? Gdzie wgrać pliki czcionek? Jak i w którym pliku zdefiniować dostęp do nich ? Edited October 9, 2013 by dzilupl (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted October 8, 2013 Share Posted October 8, 2013 pytanie z jakich czcionek chcesz korzystać, z czcionek googla? własnych fontów? Link to comment Share on other sites More sharing options...
dzilupl Posted October 8, 2013 Author Share Posted October 8, 2013 Mam własne fonty w plikach ttf. Link to comment Share on other sites More sharing options...
vekia Posted October 8, 2013 Share Posted October 8, 2013 najlepiej będzie umieścić je w katalogu w którym masz główny plik css czyli /themes/TWOJ_SZABLON/css/ następnie definiujesz kod: @font-face { font-family: arial; src: url('arial.ttf') } Link to comment Share on other sites More sharing options...
dzilupl Posted October 9, 2013 Author Share Posted October 9, 2013 Dzięki. A tą definicję muszę dodawać przy każdym wystąpieniu font czy może wystarczy raz gdzieś w global.css dodać wpis i na zasadzie np: @font-face { font-family: MojaCzcionka; src: url('MojaCzcionka.ttf') } i później tylko kod np: body{ font:normal 11px/14px MojaCzcionka; Link to comment Share on other sites More sharing options...
vekia Posted October 9, 2013 Share Posted October 9, 2013 @font-face{font-family: MojaCzcionka;src: url('MojaCzcionka.ttf')} to dodajesz tylko jeden raz w globalnym pliku z cssami (globalnym, czyli takim który zawsze będzie ładowany na stronach) następnie już normlanie - w dowolnym miejscu, kiedy chcesz możesz ustawić sobie style css dla dowolnego elementu z wykorzystaniem jedynie "font-family: MojaCzcionka;" 1 Link to comment Share on other sites More sharing options...
dzilupl Posted October 9, 2013 Author Share Posted October 9, 2013 (edited) Już chyba ostatnie 2 pytania w temacie Jeśli chcę zdefiniować więcej własnych czcionek to ma być np : @font-face { font-family: MojaCzcionka; src: url('MojaCzcionka.ttf') } @font-face { font-family: MojaCzcionka2; src: url('MojaCzcionka2.ttf') } Co jeśli dla każdego fonta bold i italic mam w osobnym pliku ttf - jak to skonfigurować żeby można było później używać np font-weight:bold; Edited October 9, 2013 by dzilupl (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted October 9, 2013 Share Posted October 9, 2013 tak jest, zgadza się Link to comment Share on other sites More sharing options...
dzilupl Posted October 9, 2013 Author Share Posted October 9, 2013 To jeszcze tylko temat - co jeśli dla każdego fonta bold i italic mam w osobnym pliku ttf - jak to skonfigurować żeby można było później używać np font-weight:bold; i będzie SOLVED )) Link to comment Share on other sites More sharing options...
vekia Posted October 9, 2013 Share Posted October 9, 2013 w oparciu o wiedzę jaką posiadam o CSS mogę jedynie powiedzieć, że jedyne co wchodzi w grę to definiowanie nowych czcionek typu @font-face{ font-family: myFont-bold ... @font-face{ font-family: myFont-italic ... mogę się mylić, ale nigdy dotąd nie spotkałem innego rozwiązania Link to comment Share on other sites More sharing options...
dzilupl Posted October 9, 2013 Author Share Posted October 9, 2013 Ok, tak zrobię i potestuję ) vekia, po raz kolejny WIELKIE DZIĘKI !! Link to comment Share on other sites More sharing options...
Recommended Posts