Saturday, May 15, 2010

OBIEE Remove line below guided navigation link

If you want to get rid of the small black line below the guided navigation link:
image
Found these solutions here:
http://forums.oracle.com/forums/thread.jspa?threadID=1001694&tstart=0

For all dashboards:

Edit the portalcontent.css change:
image
to
image
[code]
HR {
visibility:hidden;
}
[/code]

For one dashboard only:

add a text box to the dashboard page:
image
Add the following code (thanks Joe!)
[code]
<script type="text/javascript">
var aElm=document.getElementsByTagName('hr');
for (var i =0; i <aElm.length;i++)
    {
        aElm[i].parentNode.removeChild(aElm[i]);
    }
</script>
[/code]
And the black line is gone:
image
Till Next Time

1 comment:

Puneeth Prasad. R said...

Thanks for the solution. very much useful