0
When you set the property background, in fact you are setting a list of properties with the following values:
background-image: nonebackground-position: 0% 0%background-size: auto autobackground-repeat: repeatbackground-origin: padding-boxbackground-clip: border-boxbackground-attachment: scrollbackground-color: transparent
Then you overwrite the value of background-position
To fix this you can:
Invert the order (put the style
ul#album-fotos liafterward)Put the
!importantafter ownershipbackground-position(method not recommended)Grind
backgroundforbackground-imageandbackground-repeat

Also put the html code so we can see.
– Leticia Rosa