background: transparent url('http://www.cheapconnect.net/images/bg_top2.gif') no-repeat center top;
I suggest using FireBug for css debugging, if installed in FireFox you can use right mouse click on an element and analyze it, modify and preview the css on the fly…
Thread Starter
gfewjf
(@gfewjf)
nope still didnt work, background is now white..
and firefox is really slow in my laptop, i use google chrome so i dont think it will work firebugging
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Chrome has its equivalent (but with less features) of firebugging: https://developers.google.com/chrome-developer-tools/
As I can see the recommended CSS has worked, please clear your browser’s cache.
Thread Starter
gfewjf
(@gfewjf)
the background image is now white, when i put the recommended css code.. i want the background to be like this website
http://www.cheapconnect.net
tyvm for the help
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
So you do want it to repeat?
Thread Starter
gfewjf
(@gfewjf)
let me try to explain this haha,
when you look at this website http://www.cheapconnect.net/nl/tarieven.php. you see the background, the color is gray/silver but there is only 1 white ‘faded’ line.. when you look on my website you see the white line multiple times. take a look in the ‘tarieven’ (http://cms.cheapconnect.net/?page_id=51) menu, you will see what i mean
Thread Starter
gfewjf
(@gfewjf)
and when i put the recommended css, the background changes white
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
The website you want to replicate has the background image repeating on the X axis (horizontally) and then sets a default grey colour as well.
To replicate this you would add:
body {
background: #e2e2e2 url(http://www.cheapconnect.net/images/bg_top2.gif) top repeat-x;
}
Thread Starter
gfewjf
(@gfewjf)
yess!!!! thats how i want it, was searching 2 days for this solution, thank you very much!