TheFlori
TheFlori

Reputation: 69

How to Put image on Navigation List in Oracle APEX 5.1

can anyone help me? I would like to show my own Image in the Navigation List. I've already tryed it in the Shared Components / List Details / Edit Desktop Navigation menu but he didnt show my image. See Attached image

at the Page HTML shows me that he put FA in front of my image :O span class="fa *********/r/425/files/static/v11/2018-06-13 08_34_21-Durchführung CAB.png"

enter image description here

enter image description here

enter image description here

Upvotes: 2

Views: 1585

Answers (1)

Paweł Prusinowski
Paweł Prusinowski

Reputation: 416

In this place you put class name of FontApex or custom css class which contains image info.

For example:

Image/class: slon

Inline css for page:

.slon {
    background-image: url(#APP_IMAGES#2.jpg);
    background-size: 35px 35px;
}

Upvotes: 1

Related Questions