.up { background-image: url(\'/design-library/profound_test/images/cab_images/white-arrow-up.png\') 50% 50% no-repeat; }
This code is giving me an
Yep because the background-image property is for the image part only, not the position or repeat properties of the background, use background:
background-image
background
.up { background: url('/design-library/profound_test/images/cab_images/white-arrow-up.png') 50% 50% no-repeat; }