Jump to content

[SOLVED] Editing font attributes?


Gotbreaks

Recommended Posts

How can I edit the font attributes to the text found in $message?

 

if(!isset($_GET['err']))

{

$message = "You've just logged out. To go back to the Customer Information page, please re-login.";

}

 

It shows up in red, Times New Roman...which I'd like to change to black, Verdana.

 

Thanks,

Gotbreaks

Link to comment
https://forums.phpfreaks.com/topic/117223-solved-editing-font-attributes/
Share on other sites

CSS question, not PHP. But since you're new, i wont complain too much :P

 

Wrap it up in a span tag and give it some styling. If you're using this style often, make it a class and give the span tag a class instead.

 

if(!isset($_GET['err']))
   {
      $message = '<span style="color:red;font-family:Verdana">You\'ve just logged out. To go back to the Customer Information page, please re-login.</span>';
   }

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.