I have different type of Popup / InfoTemplate in my map. For certain type of popups, I want to remove the title completely. In other words, I can do something like "if popup info is for feature type A, then remove title; else keep title.".
My InfoTemplate are created with
new InfoTemplate(.....)
I have used CSS to remove the title bar, like below, but this removes title for ALL popups.
.InfoWindowWidget .title { display: none; }
I am using Javascript API 3.13.
Thanks.