Hi Kahn,
thank you for the reply, after some playing around i finally managed to get it working the way i want to. its in line what you also mentioned.
here is my css script i use, i created 2 datalabels and for each datalable i used below css in an expression for the datalable what i use on the form (set to load on initializing) and hide these datalables from my form
First Datalable // show 1st view on top of all tabs
<script language="javascript" type="text/javascript">
$('.view:first').insertBefore(".tabs-top");
$('.tab-box-tabs').each(function ()
{
var ar = this.id;
document.getElementById(ar).style.marginTop = "10px";
});
</script>
<style>
.view>div.innerpanel>div {box-shadow:none !important;}
.view div.panel-body {background-color: transparent !important}
.view div.panel-body {border-style: none !important}
</style>
--------------------------------------------------------------
Second Datalable //insert background image (create a view for this and load image online)
<script> $('body').css('background-image', 'url("your_imageURL_Copy.jpg")').css('background-attachment','fixed').css('background-size','100%');</script>
--------------------------------------------------------------
the form opacity i used the below settings in the form settings section
Page Color : Transparent
Form Color : rgba (255, 255, 255, 0.6) --> rgba only applies to latest browers i think
what i noticed the script is not responding to the "Platinum" theme on my side - dont know if its only my system..
Also the transparent and rgba properties only work when your form have tabs, else it will make the whole form background transparent, rgba is not working for me on the form color if there is no tabs...