Feel free to check out my full HTML code here. You can simply copy and paste it into a demo document on your local machine to see exactly what I'm talking about.
My goal is to style the boxes to include both a gradient background AND a unique arrow on the right side, as shown in the image above.
The issue I'm facing is that the gradient effect I currently have is achieved through this line of code:
background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ececec)) ;
This particular code snippet appears on line 21 in my overall code structure. However, since the "background" attribute is already occupied by this line, I am unable to also input a "url(image.png)" tag to specify the custom down-arrow image, which is referenced on line 20 of my code.
Is there any method or workaround I can use to incorporate both a gradient and a down-arrow image simultaneously?
Thank you!