sincityalex Posted November 24, 2009 Share Posted November 24, 2009 Hey Guys, another problem i have and hopefully the final one! For the life of me i can not change the text font on this page below, i've tried changing the style sheet and nada, again any help is greatly appreciated: http://bradhagermlm.com/memoRead.php?memo_id=15 code below: <? include_once("includes/db.php"); $query = " SELECT * FROM memo WHERE memo_id='" . $_REQUEST['memo_id'] . "' "; $result = $sql->Query($db, $query, Debug_1::Trace_Code(__FILE__,__LINE__)); $row = $sql->Fetch_Array_Row($result); if( $sql->Row_Count($result) == 0 ) { ?></td> </tr> <tr> <td></td> </tr> <tr> <td><? } else { ?></td> </tr> <tr> <td class="mainText"><span class="head"> <?=$row['memo_heading']?> </span></td> </tr> <tr> <td class="mainText"> </td> </tr> <tr> <td class="mainText"><div align="justify"> <? $text = $row['memo_text']; $text = wordwrap($text, 80); echo "<pre>".$text."</pre>"; ?> </div></td> </tr> <tr> <td><? } ?></td> </tr> <tr> <td> </td> </tr> <tr> <td><a href="mentoringMemos.php" class="viewMemo">BACK TO ALL MEMOS</a></td> </tr> </table> </div> Quote Link to comment Share on other sites More sharing options...
Goldeneye Posted November 24, 2009 Share Posted November 24, 2009 This topic should probably be in the PHPFreaks CSS-Help Forum. Are you certain you edited the correct CSS-class for the table? The font-family property is what you'd use to change a font-face through CSS. You could do it in a CSS-file or right inside the HTML code (which I don't recommend). Quote Link to comment Share on other sites More sharing options...
sincityalex Posted November 24, 2009 Author Share Posted November 24, 2009 Yes, a friend of mine who coded this (Who is no longer available) Said that it needs to be changed in the pre tags? I'm a designer not a developer so i cant figure this out Quote Link to comment Share on other sites More sharing options...
haku Posted November 24, 2009 Share Posted November 24, 2009 The CSS changes you have made are being reflected in the text. Are you sure you are choosing web-safe fonts? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.