I've got some code which I've needed to customise
my html
<div class="text-rotator add-top-half add-bottom-half align-left white-txt medium-txt uppercase highlight-bg">
<div class="rotator-wrap" style="display: block;">
<span class="rotate">Creating designs!</span>
</div>
</div>
my css is:
.text-rotator {
line-height: 80px!important;
display: inline!important;
}
.text-rotator span {
background: #3399ff!important;
filter: alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
But at the moment it is setting the opacity of the text as well as the background and I cannot work out how to leave the text and just change the background.
Any ideas?