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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.