Jump to content

Unable to change font


sincityalex

Recommended Posts

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>

Link to comment
https://forums.phpfreaks.com/topic/182731-unable-to-change-font/
Share on other sites

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).

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.