I've been holding off on asking this question for too long.
And it's been hampering my use of CSS sprites.
If I have a Div that has a background that repeats Y a header for the top and a footer for the bottom.
It holds quotes, contact forms or sidebar content.
How do I change it from using this?
HTML
CSSCode:<div id="cbox"> <img src="images/chd1.png" alt="cform" class="imgtop"" /> <h3>Quick Contact & Call Back Form</h3> Form <img src="images/chd1.png" alt="cform" class="imgbot"" /> </div>
Code:#cbox {width: 289px; background: url(images/cbg.png) repeat-y; position:relative;}
to using purely CSS?
I tried a number of different Google searches and can't find anything or I'm just using the wrong keywords.
Thanks.


Reply With Quote
Bookmarks