html - Background different sizes on different pages -


see background here:

http://www.achingsoul.co.uk/gallery/

it's applied body element , correctly-sized. when @ here:

http://www.achingsoul.co.uk/services/

it's stretched out , strange-looking. i'm not sure css same on both pages according inspector:

body {     background-image: url('images/aching-soul-background-2.jpg');     color: #4a2f1f;     background-size: cover; } 

not sure i'm doing wrong?

remove background-size: cover; background won't stretch anymore, instead, repeat vertically. difference between both pages caused greater height in services page, when use cover value background-size property, cause effect.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -