ich würde gerne den rechten bereich des plugins in dem die skillungen angezeigt werden größer machen damit die icons als 22x22+1px border neben einander passen.
primär meine ich den druiden bereich (:lol:) mit den 4 skillungen.
die 4 icons musste ich auf 19x19+1px border setzten damit sie neben einander liegen und das möchte ich egtl nicht.
quasi bräuchte man einen bereich von 80px damit 3 icons mit 22x22+2px border(ergo 1px pro iconseite rechts und links) und einem zwischenabstand von 4px.
bei 4 icons wären es dann ein bereich von 108px damit 4 icons mit 22x22+2px border(ergo 1px pro iconseite rechts und links) und einem zwischenabstand von 4px.
Beiträge von Atath
-
-
Fehlermeldung kommt wenn ich den QC änder und das neue plugin hochlade:
Fatal error: Cannot redeclare class SimpleWowRecruitment in /users/evgl/www/wordpress/wp-content/plugins/simple-wow-recruitment/simple-wow-recruitment.php on line 0werde es noch mit der andere variante probieren.
Fehler gefunden. Es klappt nun. allerdings werde ich die icons noch ändern (eckig) und die border dementsprechend anpassen ^^ (das schaffe ich noch ;P)
so und dann werde ich sehen ob der bereich beim druid wieder normal angezeigt wird oder nicht. wenn du allerdings eine lösung für die druiden anzeige hast dann lass es mich bitte wissn ;)
-
Kein Problem, bekomm ich DKP dafür? :D
Na klaro. 5k+ lebenslange garantie oben drauf !
Achja... die Prioritäten, wenn du das auch noch umsetzen möchtest, so ersetze den Quelltext des Plugins durch folgenden:
PHP
Alles anzeigen<?php /* Plugin Name: Simple WoW Recruitment Plugin URI: http://screennetz.de/develop/simple-wow-recruitment/ Description: Simple World of Warcraft recruitment widget Author: tumichnix Version: 1.0.3 Author URI: http://screennetz.de/ */ /* Copyright 2010-2012 tumichnix (email: tumichnix at screennetz.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ class SimpleWowRecruitment extends WP_Widget { /** * URL to plugin images */ private $urlImages; /** * wow class */ private $class = array( 'deathknight' => array('blood', 'frost', 'unholy'), 'druid' => array('balance', 'guardian', 'feral', 'restoration'), 'hunter' => array('beast_mastery', 'marksmanship', 'survival'), 'mage' => array('arcane', 'fire', 'frost'), 'monk' => array('brewmaster', 'mistweaver', 'windwalker'), 'paladin' => array('holy', 'protection', 'retribution'), 'priest' => array('discipline', 'holy', 'shadow'), 'rogue' => array('assassination', 'combat', 'subtlety'), 'shaman' => array('elemental', 'enhancement', 'restoration'), 'warlock' => array('affliction', 'demonology', 'destruction'), 'warrior' => array('arms', 'fury', 'protection') ); /** * search options */ private $searchOptions = array( 0 => 'closed', 1 => 'low', 2 => 'medium', 3 => 'high' ); /** * constructor * @return void */ public function __construct() { $this->urlImages = WP_PLUGIN_URL.'/simple-wow-recruitment/images'; parent::__construct('SimpleWowRecruitment', 'WoW-Recruitment', array('description' => 'Simple WoW Recruitment Widget')); } /** * form * @param array $instance * @return void */ public function form($instance) { $title = ($instance) ? esc_attr($instance['title']) : 'Recruitment'; echo 'Title:<br />'; echo '<input type="text" class="widefat" id="'.$this->get_field_id('title').'" name="'.$this->get_field_name('title').'" value="'.$title.'" />'; echo '<br /><br />'; echo '<ul style="list-style-type: none">'; foreach ($this->class as $class => $skills) { echo '<li><img src="'.$this->urlImages.'/class/'.$class.'.png" style="vertical-align: middle" /> <b>'.ucfirst($class).'</b>'; echo '<ul style="margin-top: 10px; list-style-type: none">'; foreach ($skills as $skill) { $key = $class.'-'.$skill; echo '<li style="padding-left: 30px"><img src="'.$this->urlImages.'/skills/'.$class.'_'.$skill.'.png" title="'.$this->formatSkill($skill).'" style="vertical-align: middle" />'; echo '<select name="'.$this->get_field_name($key).'" id="'.$this->get_field_id($key).'" style="margin-left: 10px; width: 150px">'; foreach ($this->searchOptions as $searchKey => $searchVal) { echo '<option value="'.$searchKey.'" '.((array_key_exists($key, $instance) && $instance[$key] == $searchKey) ? 'selected="selected"' : '').'>'.$searchVal.'</option>'; } echo '</select>'; echo '</li>'; } echo '</ul></li>'; } echo '</ul>'; } /** * save * @param array $new_instance * @param array $old_instance * @return array */ public function update($newInstance, $oldInstance) { $instance = $newInstance; $instance['title'] = strip_tags($newInstance['title']); return $instance; } /** * * @param type $args * @param type $instance */ public function widget($args, $instance) { echo '<li id="'.$args['widget_id'].'" class="widget simple-wow-recruitment-widget"><h2 class="widgettitle">'.$instance['title'].'</h2>'; echo '<div style="padding: 5px;"><table width="100%" border="0">'; foreach ($this->class as $class => $skills) { echo '<tr height="22"><td><img src="'.$this->urlImages.'/class/'.$class.'.png" / style="vertical-align:middle;"> <span class="'.$class.'">'.ucfirst($class).'</span></td>'; echo '<td width="95" style="text-align: right">'; foreach ($skills as $skill) { $key = $class.'-'.$skill; if (array_key_exists($key, $instance)) { if ($instance[$key] > 0) { echo '<img class="'.$this->searchOptions[$instance[$key]].'" src="'.$this->urlImages.'/skills/'.$class.'_'.$skill.'.png" title="'.$this->formatSkill($skill).': '.$this->searchOptions[$instance[$key]].'" style="vertical-align:middle;"/> '; } else { echo '<img class="'.$this->searchOptions[$instance[$key]].'" src="'.$this->urlImages.'/skills/'.$class.'_'.$skill.'.png" title="'.$this->formatSkill($skill).': '.$this->searchOptions[$instance[$key]].'" style="vertical-align:middle; filter:alpha(opacity=15); -moz-opacity: 0.15; opacity: 0.15;"/> '; } } } echo '</td></tr>'; } echo '</table></div></li>'; } /** * format skillname * @param string $skill * @return string */ private function formatSkill($skill) { return ucfirst(str_replace('_', ' ', $skill)); } } add_action('widgets_init', create_function('', 'return register_widget("SimpleWowRecruitment");')); ?>Und lad dir die neue Version meines kleinen Addons, einfach die alten Daten ersetzen: simple-wow-recruitment-addon.zip
ODER
ersetze den Inhalt der wow-class-styles.css durch folgenden:
Code
Alles anzeigen/* Klassenfarben */ .deathknight { color: #c41e3a; } .druid { color: #ff7c0a; } .hunter { color: #aad372; } .mage { color: #68ccef; } .monk { color: #00ff96; } .paladin { color: #f090ba; } .priest { color: #ffffff; } .rogue { color: #fff468; } .shaman { color: #0070dd; } .warlock { color: #9382c9; } .warrior { color: #c69b6d; } /* Prioritäten */ .simple-wow-recruitment-widget img.closed, .simple-wow-recruitment-widget img.low, .simple-wow-recruitment-widget img.medium, .simple-wow-recruitment-widget img.high { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .simple-wow-recruitment-widget img.closed, .simple-wow-recruitment-widget img.low { border: 1px solid #ffffff; } .simple-wow-recruitment-widget img.medium { border: 1px solid #ffd200; } .simple-wow-recruitment-widget img.high { border: 1px solid #ff0000; }Fehlermeldung kommt wenn ich den QC änder und das neue plugin hochlade:
Fatal error: Cannot redeclare class SimpleWowRecruitment in /users/evgl/www/wordpress/wp-content/plugins/simple-wow-recruitment/simple-wow-recruitment.php on line 0werde es noch mit der andere variante probieren.
-
Dankööööööööööööööööööööööööö
-
Huhu,
ich habe dir ein kleines Plugin daraus gebaut, welches du nur noch entapcken und auf deinen FTP in .../wp-content/plugins/ hochladen musst und dann natürlich im Backend aktivieren ;)
Dieses Plugin macht aktuell nicht mehr, als eine CSS Datei mit deinen gewünschten Farben zu laden... ;)
Download: simple-wow-recruitment-addon.zip
IK LIEB DIR. werds gleich mal probieren !!! -
Das Färben nach Klassen sollte "eigentlich" kein Problem sein... du erstellst dir z.B. eine wow-recruitment.css und sorgst dafür dass dein Theme diese Datei läd (in der header.php deines Themes oder besser noch in der header.php deines Child-Themes) oder du baust dir ein eigenes Plugin dafür ;)
Inhalt wäre dann z.B. (Auszug)
Code
Alles anzeigen.deathknight { color: #c41e3a; } .druid { color: #ff7c0a; } .hunter { color: #aad372; }Bezüglich der Priorität müsste das Plugin etwas umgeschrieben werden, da die Priorität aktuell nur als "Title" an das Skillungs-Bild gehangen wird (zu sehen wenn man mit der Maus darüber fährt).
Meld dich, wenn du nicht weiter kommst.
ich bin zu blöd. keine ahnung wie ich die datei schreiben muss und wie ich sie ins theme is gamepress ((nicht pro) is kein child theme) einfügen muss
-
änderungen der farben definierst du in einem stylsheet.css, wenn du in den plugin editor gehst, das wow plugin auswählst, solltest du dort einige dateien sehen, zumindest zwei, besagte php datei und eine css
ein bisschen google recherche und du bekommst das sicher relativ schnell hin, "css, font-color, id, stylesheet formatierung, style=""
wenn die priorität sich nicht ändert gibts du den jeweiligen thumbs spezifische id´s, diese definierst du in deinem stylesheet dann weiter - (ich vermute jedoch dass die rote umrandung für not am mann steht? also welche klassen/skillungen ihr momentan sucht?)
das ist nicht sonderlich schwer, bisschen reinlesen und die sache ist schnell erledigt,
viel spaß und lg
michiErgo muss ich mir eine stylesheet.css datei anlegen? oh gott :cry::confused:
-
änderungen der farben definierst du in einem stylsheet.css, wenn du in den plugin editor gehst, das wow plugin auswählst, solltest du dort einige dateien sehen, zumindest zwei, besagte php datei und eine css
ein bisschen google recherche und du bekommst das sicher relativ schnell hin, "css, font-color, id, stylesheet formatierung, style=""
wenn die priorität sich nicht ändert gibts du den jeweiligen thumbs spezifische id´s, diese definierst du in deinem stylesheet dann weiter
das plugin hat nur eine datei, dessen quellcode ich oben dar gelegt habe.
- (ich vermute jedoch dass die rote umrandung für not am mann steht? also welche klassen/skillungen ihr momentan sucht?)
die rote umrandung bedeutet in der tat, not am mann. die darstellung soll sich aber nur auf die skillungsbuttons auf der rechten seite beschränken.
lg Atath
-
Hallöchen,
ich suche dringend Hilfe für ein Plugin das nicht mehr supported wird.
ich würde den einzelnen "Klassen" gerne ihre zugehörige Klassen Farbe geben, nur weiß ich nicht wie ich was im .php Code umändern bzw. hinzufügen muss.
Darüber hinaus würde ich den Icons auf der rechten Seite gerne je nach Priorität einen Roten- (Hohe Prio), einen Gelben- (Mittlere Prio) und einen Weißen- (Standard, immer zusehen) Rand verpassen.
vielleicht kann mir ja einer von euch da unter die Arme greifen :)
Klassenfarben sollen wie folgt sein:
[COLOR=#c41e3a]Deathknight - #c41e3a[/COLOR]
[COLOR=#ff7c0a]Druid - #ff7c0a[/COLOR]
[COLOR=#aad372]Hunter - #aad372[/COLOR]
[COLOR=#68ccef]Mage - #68ccef[/COLOR]
Monk - #00ff96 (hier sehr schlecht zu lesen in dem grün :P)
[COLOR=#f090ba] Paladin - #f090ba[/COLOR]
Priest - #ffffff (hier sehr schlecht zu lesen in weiß :P)
Rogue - #fff468 (hier sehr schlecht zu lesen in dem gelb:P)
[COLOR=#0070dd] Shaman - #0070dd[/COLOR]
[COLOR=#9382c9] Warlock - #9382c9[/COLOR]
[COLOR=#c69b6d] Warrior - #c69b6d[/COLOR]Hier der Plugin-Code:
PHP
Alles anzeigen<?php /* Plugin Name: Simple WoW Recruitment Plugin URI: http://screennetz.de/develop/simple-wow-recruitment/ Description: Simple World of Warcraft recruitment widget Author: tumichnix Version: 1.0.3 Author URI: http://screennetz.de/ */ /* Copyright 2010-2012 tumichnix (email: tumichnix at screennetz.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ class SimpleWowRecruitment extends WP_Widget { /** * URL to plugin images */ private $urlImages; /** * wow class */ private $class = array( 'deathknight' => array('blood', 'frost', 'unholy'), 'druid' => array('balance', 'guardian', 'feral', 'restoration'), 'hunter' => array('beast_mastery', 'marksmanship', 'survival'), 'mage' => array('arcane', 'fire', 'frost'), 'monk' => array('brewmaster', 'mistweaver', 'windwalker'), 'paladin' => array('holy', 'protection', 'retribution'), 'priest' => array('discipline', 'holy', 'shadow'), 'rogue' => array('assassination', 'combat', 'subtlety'), 'shaman' => array('elemental', 'enhancement', 'restoration'), 'warlock' => array('affliction', 'demonology', 'destruction'), 'warrior' => array('arms', 'fury', 'protection') ); /** * search options */ private $searchOptions = array( 0 => 'closed', 1 => 'low', 2 => 'medium', 3 => 'high' ); /** * constructor * @return void */ public function __construct() { $this->urlImages = WP_PLUGIN_URL.'/simple-wow-recruitment/images'; parent::__construct('SimpleWowRecruitment', 'WoW-Recruitment', array('description' => 'Simple WoW Recruitment Widget')); } /** * form * @param array $instance * @return void */ public function form($instance) { $title = ($instance) ? esc_attr($instance['title']) : 'Recruitment'; echo 'Title:<br />'; echo '<input type="text" class="widefat" id="'.$this->get_field_id('title').'" name="'.$this->get_field_name('title').'" value="'.$title.'" />'; echo '<br /><br />'; echo '<ul style="list-style-type: none">'; foreach ($this->class as $class => $skills) { echo '<li><img src="'.$this->urlImages.'/class/'.$class.'.png" style="vertical-align: middle" /> <b>'.ucfirst($class).'</b>'; echo '<ul style="margin-top: 10px; list-style-type: none">'; foreach ($skills as $skill) { $key = $class.'-'.$skill; echo '<li style="padding-left: 30px"><img src="'.$this->urlImages.'/skills/'.$class.'_'.$skill.'.png" title="'.$this->formatSkill($skill).'" style="vertical-align: middle" />'; echo '<select name="'.$this->get_field_name($key).'" id="'.$this->get_field_id($key).'" style="margin-left: 10px; width: 150px">'; foreach ($this->searchOptions as $searchKey => $searchVal) { echo '<option value="'.$searchKey.'" '.((array_key_exists($key, $instance) && $instance[$key] == $searchKey) ? 'selected="selected"' : '').'>'.$searchVal.'</option>'; } echo '</select>'; echo '</li>'; } echo '</ul></li>'; } echo '</ul>'; } /** * save * @param array $new_instance * @param array $old_instance * @return array */ public function update($newInstance, $oldInstance) { $instance = $newInstance; $instance['title'] = strip_tags($newInstance['title']); return $instance; } /** * * @param type $args * @param type $instance */ public function widget($args, $instance) { echo '<li id="'.$args['widget_id'].'" class="widget"><h2 class="widgettitle">'.$instance['title'].'</h2>'; echo '<div style="padding: 5px;"><table width="100%" border="0">'; foreach ($this->class as $class => $skills) { echo '<tr height="22"><td><img src="'.$this->urlImages.'/class/'.$class.'.png" / style="vertical-align:middle;"> <span class="'.$class.'">'.ucfirst($class).'</span></td>'; echo '<td width="95" style="text-align: right">'; foreach ($skills as $skill) { $key = $class.'-'.$skill; if (array_key_exists($key, $instance)) { if ($instance[$key] > 0) { echo '<img src="'.$this->urlImages.'/skills/'.$class.'_'.$skill.'.png" title="'.$this->formatSkill($skill).': '.$this->searchOptions[$instance[$key]].'" style="vertical-align:middle;"/> '; } else { echo '<img src="'.$this->urlImages.'/skills/'.$class.'_'.$skill.'.png" title="'.$this->formatSkill($skill).': '.$this->searchOptions[$instance[$key]].'" style="vertical-align:middle; filter:alpha(opacity=15); -moz-opacity: 0.15; opacity: 0.15;"/> '; } } } echo '</td></tr>'; } echo '</table></div></li>'; } /** * format skillname * @param string $skill * @return string */ private function formatSkill($skill) { return ucfirst(str_replace('_', ' ', $skill)); } } add_action('widgets_init', create_function('', 'return register_widget("SimpleWowRecruitment");')); ?>Und zu guter Letzt noch die Homepage auf der das Plugin läuft (zu sehen in der rechten Main Sidebar unter Recruitment) und die Plugin-Seite
Meine HP: Everlasting Glory
Plugin-Seite: Simple WoW Recruitment -
Hat alles geklappt. ich danke euch :)
-
Durch das umwandeln der Schriftdateien sieht die Schrift an einigen Stellen sehr kantig aus :/
-
Hey Hey Hey. Cool, ich habs hinbekommen :)
CSS
Alles anzeigen/* Theme Name: EverlastingGloryTheme URI: http://everlasting-glory.5x.to Description: A World of Warcraft Twenty Ten child theme. Author: Atath Author url: http://everlasting-glory.5x.to Version: 1.0 Tags: fixed-width, custom-header, theme-options, warcraft, game, cataclysm, blizzard Template: twentyten */ @import url(../twentyten/style.css); [COLOR=#ff0000]<style type="text/css"> @font-face { font-family: BIRTH OF A HERO; src: url('http://blabla.net/wordpress/BIRTH_OF_A_HERO.ttf') } @font-face { font-family: BIRTH OF A HERO; src: url('http://blabla.net/wordpress/BIRTH_OF_A_HERO.eot') } @font-face { font-family: BIRTH OF A HERO; src: url('http://blabla.net/wordpress/BIRTH_OF_A_HERO.svg') } @font-face { font-family: BIRTH OF A HERO; src: url('http://blabla.net/wordpress/BIRTH_OF_A_HERO.woff') } </style>[/COLOR] .excerpt-style p.read-more-text { float:right; margin-bottom:-5px!important; padding-right:15px; } #col-1 .read-more-text,#col-2 .read-more-text { margin-bottom:0; } .entry-content,.entry-summary { clear:both; font-family:Arial, Helvetica, sans-serif; font-size:14px; padding:10px 0 0; } .comments-link { background:url(images/icons/comment-1.png) no-repeat 1px; background-color:transparent; color:red!important; padding-left:20px; padding-top:1px; } [COLOR=#ff0000]#content .entry-title { background:url(images/icons/post_icon.png) no-repeat 1px; background-position:3px 0; color:#FFF8D6; font-family: BIRTH OF A HERO; font-size:32px; line-height:1.1em; padding-left:50px; text-shadow:4px 4px 4px #000; } #content .entry-title a { color:#FFF8D6; font-family: BIRTH OF A HERO; font-size:32px; line-height:1.1em; text-shadow:3px 3px 3px #000; }[/COLOR]Danke euch allen :)
und jetzt probier ich mal die Navigations-Leiste in der schrift zu verändern :D
-
CSS
Alles anzeigen/* Theme Name: EverlastingGloryTheme URI: http://everlasting-glory.5x.to Description: A World of Warcraft Twenty Ten child theme. Author: Atath Author url: http://everlasting-glory.5x.to Version: 1.0 Tags: fixed-width, custom-header, theme-options, warcraft, game, cataclysm, blizzard Template: twentyten */ @import url(../twentyten/style.css); [COLOR=#ff0000]@font-face { font-family:'BIRTH OF A HERO'; src:url('http://blabla.net/wordpress/BirthOfAHero.ttf'); }[/COLOR] .excerpt-style p.read-more-text { float:right; margin-bottom:-5px!important; padding-right:15px; } #col-1 .read-more-text,#col-2 .read-more-text { margin-bottom:0; } .entry-content,.entry-summary { clear:both; font-family:Arial, Helvetica, sans-serif; font-size:14px; padding:10px 0 0; } .comments-link { background:url(images/icons/comment-1.png) no-repeat 1px; background-color:transparent; color:red!important; padding-left:20px; padding-top:1px; } [COLOR=#ff0000]#content .entry-title { background:url(images/icons/post_icon.png) no-repeat 1px; background-position:3px 0; color:#FFF8D6; @font-face { font-family:BIRTH OF A HERO; src:url(http://blabla.net/wordpress/BirthOfAHero.ttf); } font-size:32px; line-height:1.1em; padding-left:50px; text-shadow:4px 4px 4px #000; }[/COLOR] [COLOR=#ff0000]#content .entry-title a { color:#FFF8D6; @font-face { font-family:BIRTH OF A HERO; src:url(http://blabla.net/wordpress/BirthOfAHero.ttf); } font-size:32px; line-height:1.1em; text-shadow:3px 3px 3px #000; }[/COLOR]wäre das so richtig definiert ? es geht um die roten bereiche :P
-
OK dann definier ichs mal.
gibt es eine möglichkeit aus einer .ttf-Datei eine .woff .eot und .svg zu machen ?
Da es die Schrift "BIRTH OF A HERO" nur in .ttf gibt
-
oder muss man .otf- bzw. .woff-Datein verwenden ?
-
so habe ich das jetzt allerdings tut sich nix
Code
Alles anzeigen#content .entry-title { background:url(images/icons/post_icon.png) no-repeat 1px; background-position:3px 0; color:#FFF8D6; @font-face { font-family:BIRTH OF A HERO; src: url(http://blabla.net/BIRTH_OF_A_HERO.TTF); } font-size:32px; line-height:1.1em; padding-left:50px; text-shadow:4px 4px 4px #000; } #content .entry-title a { color:#FFF8D6; @font-face { font-family:BIRTH OF A HERO; src: url(http://blabla.net/BIRTH_OF_A_HERO.TTF); } font-size:32px; line-height:1.1em; text-shadow:3px 3px 3px #000; }die ".." bei dem Schriftnamen sowie '..' bei der adresse bewirkt nix.
-
So recht will das grad nicht klappen:-(
Ich benutze WP 3.6.1 mit ElternTheme TwentyTen und ChildTheme.
Es geht um den unten stehenden Codebereich im Stylesheet (style.css)
Code
Alles anzeigen#content .entry-title { background:url(images/icons/post_icon.png) no-repeat 1px; background-position:3px 0; color:#FFF8D6; font-family:BIRTH OF A HERO, Arial, "Times New Roman", Times, serif; font-size:32px; line-height:1.1em; padding-left:50px; text-shadow:4px 4px 4px #000; } #content .entry-title a { color:#FFF8D6; font-family:BIRTH OF A HERO, "Times New Roman", Times, serif; font-size:32px; line-height:1.1em; text-shadow:3px 3px 3px #000; } -
Ich danke euch beiden. Dann werde ich mich mal daran probieren mit @font-face :)
-
Ich würde gerne wissen ob die Möglichkeit besteht eine Schriftart zu erzwingen, auch wenn sie nicht auf den jeweiligen Rechnern vorhanden ist.
zum Beispiel über das hochladen der Schrift auf den Server. damit die Schrift vom Server aus geladen werden kann.Ich hatte mich hier schon mal durchgelesen, allerdings bin ich mir nicht sicher ob das heute noch funktioniert hier. Vielleicht wisst ihr ja einen Rat.
Hier ist die Seite und es geht um die Beitragsüberschriften.
Danke schon mal im Voraus
Atath :)
-
Hab WP auf 3.6.1 geupdatet :)