Recently a developer asked me about how to hide the icon and heading of FacesMessage. So here I am posting a small CSS that does the trick.
Previously I have posted about resizing FacesMessage and skinning ADF Dialog component inside the popup, You can check these posts for more details about skin selectors
Check How to Show FacesMessage in Oracle ADF?
By default, Error FacesMessage in ADF Application looks like this
Now create a Skin in view controller project and write this simple piece of CSS. This CSS basically hides the header part of dialog that is used in creating FacesMessage.
- af|dialog::header, af|dialog::header-end, af|dialog::header-start {
- display: none;
- }
and FacesMessage looks like this
That's All
Cheers 🙂 Happy Learning
No comments :
Post a Comment