You can see my entire HTML here. You can copy/paste it into a demo document locally and see what I’m referring to.
Basically I want to style the boxes to have both a gradient AND a custom arrow on the right. It’s shown in the image above.
The problem is that the gradient I am getting is via this code:
background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ececec)) ;
This is line 21 in my code above. But because the “background” attribute is already taken up by this line, I cannot also include a “url(image.png)” tag to specify the custom down-arrow image, which is line 20 in my code.
Is there a way I can have gradient and a down-arrow image?
Thanks!
Check this link