Issue
i had a site like just eat setup on one domain name ive tranfered it to a sub domain name and edited all the files to update the url now ive noticed my background image is not working even tho im linking to it
<!-- banner part starts -->
<section class="hero bg-image" data-image-src="images/image01.jpg">
<div class="hero-inner">
<div class="container text-center hero-text font-white">
<h1>Order Delivery & Take-Out </h1>
<h5 class="font-white space-xs">Enter your postcode to find local restaurants and takeaways in your area</h5>
<div class="banner-form">
live site can be found here http://food.clickincreaser.com/
Solution
Change the:
data-image-src="images/image01.jpg">
To:
style="background-image: url(images/image01.jpg)">
To get something like that:
<section class="hero bg-image" style="background-image: url(images/image01.jpg)">
Answered By - Ivanquez
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.