Hi everyone,
I have the following code and I've used css to insert a background image into the h3 element – basically just an image tile.
In addition to this tile image I need to insert another image that will represent the contents of the h3, ie. an image that says "Apparel Categories" (I'm using the Phark method to do this). As I need two background images inserted into this element I'm assuming I'll need an extra element wrapped around the h3 to do this. I was thinking about using a div but wondered if there was some other more appropriate element to use instead.Code:<div id="sidebar"> <h3>Apparel Categories</h3> <ul> <li id="ProdOne"><a href="#">Product 1</a></li> <li id="ProdTwo"><a href="#">Product 2</a></li> <li id="ProdThree"><a href="#">Product 3</a></li> <li id="ProdFour"><a href="#">Product 4</a></li> </ul> </div>
Appreciate any comments or advice.








Bookmarks