Page 1 of 1

[SOLVED] Product-list css background not displaying on 1st

Posted: Wed Mar 13, 2013 5:57 am
by hawkish
Anyone know why this is?

CODE FROM CSS

Code: Select all

.product-list > div + div {
	border-top: 1px solid #EEEEEE;
	padding-top: 16px;
	background: url('../image/FREEDELL.png') center right no-repeat;
}
DEMO

Code: Select all

http://www.hutchinsons.com/HiFi-Cheltenham-Gloucestershire-Hutchinsons/Amplifiers

Re: Product-list css background not displaying on 1st produc

Posted: Wed Mar 13, 2013 4:18 pm
by inactiveaccount9912
because that code is for skipping the first product, add the background to the

Code: Select all

.product-list > div
block instead.

Re: Product-list css background not displaying on 1st produc

Posted: Fri Mar 15, 2013 4:21 am
by hawkish
Brilliant, many thanks ;D