Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Is it possible to set one Qlik sense object float on top of another Qlik sense object?

Is it possible to set one Qlik sense object float on top of another Qlik sense object?

For example, is it possible to set Qlik sense Text&image object float on top of Qlik sense map object?

Thanks!

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Use mashup and the following works.

<div id="msgErreur">

    <div>Error</div>

</div>

#msgErreur {

    position: absolute;

    z-index: 5;

    color: white;

}

#msgErreur > div {

    position: relative;

    top: 30px; left: -10px;

    width: 150px; height: 30px;

    background: #942911;

}

reference:

http://stackoverflow.com/questions/24539017/css-display-div-above-another-one

View solution in original post

2 Replies
Gysbert_Wassenaar

No, that's not possible afaik.


talk is cheap, supply exceeds demand
Anonymous
Not applicable
Author

Use mashup and the following works.

<div id="msgErreur">

    <div>Error</div>

</div>

#msgErreur {

    position: absolute;

    z-index: 5;

    color: white;

}

#msgErreur > div {

    position: relative;

    top: 30px; left: -10px;

    width: 150px; height: 30px;

    background: #942911;

}

reference:

http://stackoverflow.com/questions/24539017/css-display-div-above-another-one