coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: vegascoug on February 10, 2006, 12:03:16 AM

Title: PHP Question, how to mark one line BOLD
Post by: vegascoug on February 10, 2006, 12:03:16 AM
I posted this on the end of another topic, and forgot the "one question per thread" rule.

I want to make the following line read in BOLD

Line 1778 of english.php under lang directory.

  'add' => 'PLEASE CLICK \'CONTINUE\' TO ADD THE FILE(S) TO AN ALBUM.',

I would like that to appears in BOLD text when it's online.  My customers users are having a hard time seeing that (why I don't know) so I made it all caps and I thought BOLD would be another great step in having them see the door before they walk into it.

Mike
Title: Re: PHP Question, how to mark one line BOLD
Post by: Blueiris on February 10, 2006, 12:17:19 AM
Change that line to:

Quote'add' => '<b>PLEASE CLICK \'CONTINUE\' TO ADD THE FILE(S) TO AN ALBUM.</b>',
Title: Re: PHP Question, how to mark one line BOLD
Post by: vegascoug on February 10, 2006, 12:27:51 AM
Thanks, now I feel REALLY stupid.

My first guess as <b> </b> but I put it outside the single quotes ' '

It didn't work, now I know to put it INSIDE the quotes, works great, thanks!

Mike