Your ultimate PunBB resource!
You are not logged in.
## ## ## Mod title: fix extended cyrillic letters in ie 6 ## ## Mod version: 1 ## Works on PunBB: 1.2.x ## Release date: 2008-06-22 ## Author: Q. Dinar (qdinar@gmail.com) ## ## Description: Default Verdana, monaco and other fonts set at first does not support әөүҗңһ tatar letters, for example. ## this mod is to use Tahoma and Courier New instead of default fonts in ie 6. ## see also http://punbb.informer.com/forums/viewtopic.php?id=19369 (Tatar language pack, translated by me). ## ## Affected files: header.php ## ## DISCLAIMER: Please note that "mods" are not officially supported by ## PunBB. Installation of this modification is done at your ## own risk. Backup your forum database and any and all ## applicable files before proceeding. ## ##
Offline
#
#---------[ 1. CREATE FILE ]-------------------------------------------------------
#
ie6tatarletters.css in style/
#
#---------[ 2. ADD ]-------------------------------------------------------
#
.pun, .pun INPUT, .pun SELECT, .pun TEXTAREA, .pun OPTGROUP {
FONT-FAMILY: Tahoma, "Lucida Sans Unicode", "Arial Unicode MS", Verdana, Arial, Helvetica, sans-serif
}
.pun PRE {FONT-FAMILY: "Courier New", monaco, "Bitstream Vera Sans Mono", courier, monospace}
#
#---------[ 3. OPEN ]---------------------------------------------------------
#
header.php
#
#---------[ 4. FIND (line: 80) ]---------------------------------------------
#
<link rel="stylesheet" type="text/css" href="style/<?php echo $pun_user['style'].'.css' ?>" />
#
#---------[ 5. AFTER, ADD ]---------------------------------------------------------
#
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="style/ie6tatarletters.css" />
<![endif]-->
#
#---------[ 6. SAVE/UPLOAD ]-------------------------------------------------
#
Offline
style/ie6tatarletters.css
this is not correct place for that file because it is listed with style names if it is there.
Offline