Is it possible to amend/adjust a gradient background so the fade starts lower done. Example, see the fiddle here http://jsfiddle.net/gZgLc/5/
Let's say for example I wanted the white ti start to fade in at the '123test' text, how would I do this?
HTML
<div id="main"> <div class="feature-box"> <div class="feature-box-tab"> <div class="slide" style="height:250px;"> <div class="inner"> <ul class="breadcrumb"> <li><a href="index.php">Home</a></li> </ul> </div> </div> </div> </div> <div class="single-feature-top"> <p>123test. 123test<br><br> </div> <br> </div> CSS
#main { width:958px; position:relative; top:-9px; background:#FF9900 url(../images/core/header.png) no-repeat center top; border:1px solid #dadada; border-top:none; border-bottom:2px solid #dadada; -webkit-border-radius:8px; -moz-border-radius:8px; -ms-border-radius:8px; -o-border-radius:8px; border-radius:8px; margin:0 auto 25px; background: #fff; background: url('linear-gradient.png') 0 0 repeat-x; background: -webkit-linear-gradient(#fff, #FF9900);
divbehind #main?.single-feature-topyou could just apply it to that instead? jsfiddle.net/gZgLc/8