rrdwitt Posted February 26, 2018 Share Posted February 26, 2018 Hi all. This line is giving me a error. I want to bold the field within the span text. Thank you very much in advance return "<span>" + RawText("To make your gift via mail, please complete the form below and return it with the envelope provided. You may also visit us at " '<b>'+Field("yourfieldname")+'</b>'; "to give online."); + "</span>"; Quote Link to comment Share on other sites More sharing options...
David Miller Posted February 27, 2018 Share Posted February 27, 2018 Hi all. This line is giving me a error. I want to bold the field within the span text. Thank you very much in advance return "<span>" + RawText("To make your gift via mail, please complete the form below and return it with the envelope provided. You may also visit us at " '<b>'+Field("yourfieldname")+'</b>'; "to give online."); + "</span>"; You might try this instead: return '<span> To make your gift via mail, please complete the form below and return it with the envelope provided. You may also visit us at <b>' + Field("yourfieldname") + '</b> to give online. </span>'; Quote Link to comment Share on other sites More sharing options...
rrdwitt Posted February 27, 2018 Author Share Posted February 27, 2018 Thanks David!! Quote Link to comment 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.
Note: Your post will require moderator approval before it will be visible.