I am trying to style the text in the below popup. I would like to have the text show on 2 lines i.e. Message sent successfully.
should be on one line and One of our consultants will contact you within the next 2 business days.
should be on another line. Is there anyway I can possibly append HTML to it?
onGetAdvice() {
this.loader.start();
this.getAdvice().subscribe((resp) => {
this.loader.stop();
this.infoPopupService.openInfoPopup('Message sent successfully. One of our consultants will contact you within the next 2 business days.');
this.showConnectWindow = false;
}, error => {
this.loader.stop();
console.log(error.statusText);
});
}
` inside HTML text. – Mr. Polywhirl Oct 01 '20 at 13:32