AbanteCart Community

Shopping Cart Operations => Tips and Tricks => Topic started by: evolancer on August 31, 2014, 04:04:41 PM

Title: Change Header to Bacgkround-Image CSS Not working?
Post by: evolancer on August 31, 2014, 04:04:41 PM
I have been successfully able to change the header colors on my website but unable to change the header to a background-image.

1. I'm modifying the style.css file.
2. The picture is of a single plank of wood. I'm repeating the image: background-repeat: repeat; in the header section of stye.css
3. I checked my linking for the background-image(/public_html/storefront/view/default_html5/image/woodgrain.jpg); and it appears to be correct.

Anybody have a successful example or quick way to fix this problem?
Title: Re: Change Header to Bacgkround-Image CSS Not working?
Post by: Basara on September 01, 2014, 01:40:52 AM
Hello.

Try to use similar CSS code
Code: [Select]
background-image: url("http://demo.abantecart.com/resources/image/18/73/3.png");
in the
Code: [Select]
.headerstrip { } css rule
../storefront/view/default_html5/stylesheet/style.css about line 232
Title: Re: Change Header to Bacgkround-Image CSS Not working?
Post by: evolancer on September 01, 2014, 01:56:32 PM
Thank you I will give this a shot!