Gotbreaks Posted July 29, 2008 Share Posted July 29, 2008 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 Quote Link to comment https://forums.phpfreaks.com/topic/117223-solved-editing-font-attributes/ Share on other sites More sharing options...
GingerRobot Posted July 29, 2008 Share Posted July 29, 2008 CSS question, not PHP. But since you're new, i wont complain too much 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>'; } Quote Link to comment https://forums.phpfreaks.com/topic/117223-solved-editing-font-attributes/#findComment-603020 Share on other sites More sharing options...
Gotbreaks Posted July 29, 2008 Author Share Posted July 29, 2008 Haha...I was so convinced you couldn't throw a style into that code! Thanks for the quick reply, and thanks for not complaining - lol. Quote Link to comment https://forums.phpfreaks.com/topic/117223-solved-editing-font-attributes/#findComment-603085 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.