hi
I added the code below in my xml
<row>
<panel >
<html>
<div class="z">tototututatatitidiv</div>
</html>
</panel>
</row>
I try to add a background color to my div tag like this but it just color the background behind the text instead the plenty background
what I have to do please??
.z {background: #848484 !important;
}
Try like
<style>
.z {
background-color:#848484 !important;
}
</style>
perfect thanks
please accept.
Are you want to give background color only for text not complete div?
if that is the case try with
<style>
.z {
background: #848484 !important;
display:inline;
}
</style>
no I want complete div please