I am trying to load a local image as background image in CSS. My folder structure as below,
MyApp
Public
index.html
html
template.html
images
myimage.png
javascripts
stylesheet
Loading index.html from public folder and on click, loading template.html from html folder. In template.html i have defined the css like this,
textarea{
<!-- background-image: url(http://i.imgur.com/2cOaJ.png); -->
background-image: url('../images/myimage.png');
background-attachment: local;
background-repeat: no-repeat;
padding-left: 35px;
padding-top: 10px;
border-color:white;
background-color: white;
height:90%;
width:95%;
resize: none;
outline-width: 0;
}
And calling this in template.html as ,
<div id="bodydata" class="tabcontent" >
<textarea rows="5" ng-model="description"></textarea>
</div>
It works beautifully when I take an image from web "background-image: URL(http://i.imgur.com/2cOaJ.png);" but does not work when I change to the local image which is nothing but the same image downloaded and saved as the local copy.
background-image: url('../images/myimage.png');
I want to have it as local because the server may not have the internet connection. So how to refer the image in right way. I have tried many things like single quotes, double quotes, without quotes but it didn't work. Please suggest.
Thanks in advance.
How is your web-server setup? Where is your web-server running from?
Depending on these answers, you should be able to achieve the desired result by adjusting your CSS like this:
background-image: url('/images/myimage.png');
So for instance, if your web-server is running in /MyApp, and is configured to allow static files to be fetched (eg files matching this pattern /images/*.png), then the answer above should work.
Related
I would like to set a background image to a div using CSS.
While I can display the image while using HTML <img src="/static/img/fon1.jpg">...
I get a 404 (Not Found) when I try to set the image through CSS:
style="background-image: url(/static/img/fon1.jpg)"\
I have tried different paths like: ../img/fon1.jpg and many others. Also with and withoud quotes.
I am certain that the css and the html are linked correctly as I can set the background to a solid color.
If I use in html, the css elements find and display the picture as well.
I feel like I should resort to just using <img> and rescaling it to fit the window, but I'd like to know what's wrong with the sucker.
Any kind of help / materials / links / jokes are welcome. Thank you if you take your time. All the best!
Folder structure:
project
└─static
└─ img
| fon1.jpg
└─ stylesheet
| styles.css
└─ base.html
HTML
<link rel="stylesheet" type="text/css" href="/static/stylesheet/styles.css">
...
<body>
<div class="background1"></div>
<div class="background2" style="background-image: url('/static/img/fon1.jpg')"></div>
</body>
...
CSS
.background1 {
background-image: url(../img/fon1.jpg);
height: 960px;
width: 1280px;
}
.background2 {
background: red;
height: 960px;
width: 1280px;
}
You missed the quotes in your code.
.background1 {
background-image: url('../img/fon1.jpg');
height: 960px;
width: 1280px;
}
I believe the proble lies in JetBrains Webstorm application. I tried the same configur on another application where I was hosting the server, and then the images were found. Currently I was using Webstorms feature to open local HTML file in browser. Seems that it doesnt support GET requests from .css file.
Update:
When referencing static files in Webstorm Live Edit the path should include the project folder. In my case the img would be located at: http://localhost:63342/projectname/static/img/fon1.jpg
I don't know from which file you are trying to access the image. I am assuming, You are trying from base.html
you are able to add the image like this.
<img src="./img/fon1.jpg">
I need some help in understanding how I can get the following HTML coding to work.
<!DOCTYPE html>
<html>
<head>
<title>YAHUAS</title>
<style>
body {
background-image: url("Pictures/Yahuas.png");
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
Student data
</body>
</html>
Should I be changing the following - background-image: url("Pictures/Yahuas.png"); so that it goes to the folder in the C:\Users\user\OneDrive - Bradford College\Advance Database\YAHUAS\PHP and HTML where this image is stored?
If the Pictures folder is located in the same path as your html file is, then it should work. Could you double check that the Pictures folder and your saved html file are in the same path?
I don't think you want to use the absolute path to the image unless you are going to view the html file only on your own computer. If you would put it on a web server or any other computer it is highly unlikely that the image would be found in the same path.
You should give to the exact URL Path
<style>
body {
background-image: url("./Pictures/Yahuas.png");
background-repeat: no-repeat;
background-size: cover;
}
</style>
Your Question is not really clear. However, I will assume you are trying to pick your image from the back of your folders/directories or from another Drive (e.g. C, D, F).
The Answer is Yes, You can Either use a backslash (Windows) or a forward-slash (Linux) with a full path or you can use a relative path if the image is present in the current directory or back directory.
<style>
body {
// Another Drive
background-image: url("C:/Users/user/My OneDrive/Pictures/pic.png");
// Relative Path
background-image: url("Pictures/pic.png");
// OR
background-image: url("./Pictures/pic.png");
// Back Directory/Folder
background-image: url("../Pictures/pic.png");
}
</style>
I have just overridden the bootstrap here and I made sure it's pulling from my local css, any other changes to it do work, but when I try to insert a background-image only localhost url for image works, if I specify local path it doesn't. I tried all variations, also static with background-image: url("{% static 'portfolio/waterfall.jpg' %}");
I'm using Django and had a problem earlier with my settings.py -can that be causing it?? Thanks
#settings.py
STATIC_URL = '/static/'
MEDIA_ROOT = BASE_DIR / 'media'
MEDIA_URL = '/media/'
#this is the jumbotron Im trying to get the background for
<section class="jumbotron text-center">
<div class="container">
<h1>Album example</h1>
<p class="lead text-muted">Something short and leading about the collection below—its contents, the
creator, etc. Make it short and sweet, but not too short so folks don’t simply skip over it entirely.
</p>
<p>
Main call to action
Secondary action
</p>
</div>
</section>
#and the custom .css
.jumbotron {
padding: 2rem 1rem;
margin-bottom: 2rem;
background-color: #c5b8b8;
border-radius: .3rem;
background-image:
url("media/portfolio/images/foster-s-home-for-imaginary-friends-fosters-home-for-imaginary-friends-_ER46ne1.jpg");
background-repeat: no-repeat;
background-position: bottom center;
background-size: cover;
}
Wrong picture address, correct is https://commons.wikimedia.org/wiki/File:Image_created_with_a_mobile_phone.png
Read about the license and available sizes and formats, then download and save on your server the appropriate version of the file for your site. Using direct link to particular version is possible, but it's rude to abuse wiki transfer.
edit
Did you insert a custom css after bootstrap in meta declarations?
If the url and order are not to blame then bad news - the problem is bigger and bootstrap-dependent.
Well, use https://validator.w3.org/unicorn/ and development tools in your browser to find out what is to blame
I downloaded "Date Picker" from http://jqueryui.com/datepicker/ and after I moved the CSS file into my project folder, the icons are gone.
WEB-INF/view/templates/images
WEB-INF/view/templates/datePickerCustomer1.css
In Css:
.ui-widget-content
{
border: 1px solid #8e846b;
background: #feeebd url(images/ui-bg_highlight-soft_100_feeebd_1x100.png) 50%
top repeat-x;
}
I have already tried
background-image: url(images/ui-bg_highlight-soft_100_feeebd_1x100.png) &
background-image: url('images/ui-bg_highlight-soft_100_feeebd_1x100.png') with quotes
None of those are not working.
The output image
The correct image to get
WEB-INF directory is a private area of the web application, any files under WEB-INF directory cannot be accessed directly from browser by specifying the URL like http://yousite.com/WEB-INF/images/myimage.jpeg. Web container will not serve the content of this directory.
I have domain 'A' with no hosting. I have domain 'B' with hosting.
I want domain 'A' to simply have a background image which it is referencing from domain 'B' hosting.
I have set up a directory in domain 'B' called 'bl' Within this folder I have placed a .jpg of the background image, 'bg.jpg' and also a style.css with the css3 code for having the background image full screen.
How do I point domain 'A' to this particular folder. Are there other elements besides the style.css and .jpg that I need?
If it helps, the only thing in the style.css file is:
html {
background: url(http://mywebsite.com/bl/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Thank you kindly for your assistance.
In this case, you will need to provide absolute path for your image with domain B. This way, you can call it on domain A.
<!DOCTYPE html>
<html>
<head>
<title>Testing - Stackoverflow</title>
<style type="text/css">
html {
background-image: url('http://blogsbits.com/wp-content/uploads/2013/01/Spring-Wallpaper.jpg');
background-repeat: no-repeat;
background-position: center;
}
.content {
margin: 0 auto;
width: 60%;
margin-top: 100px;
}
</style>
</head>
<body>
<div class="content">
<h1>Hi! Is This Usefull</h1>
<p>You can use any image that in the world wide web site. I just do it for give you more example. Just copy this code and create a new html page in your localhost. I got that image from google search. You need to get the image full path.</p>
<p><strong>Example : </strong></p>
<p>http://blogsbits.com/wp-content/uploads/2013/01/Spring-Wallpaper.jpg</p>
<p>This is the url that wich I viewed from google search engine. Click on it to view the image. Do the CSS styles also what type of you like</p>
<p>Hope you can understand this.</p>
<small>Wish you good luck on programming</small>
<p><small>Yeshan Sachitha K Perera # ITSthe1</small></p>
</div>
</body>
</html>
Create new html document in your localhost with this source code and run it. I hope you can understand this.
Forget about the existence of Domain B. It is irrelevant.
You need to:
Configure the DNS for Domain A to point at the IP address of the server which is running the webserver
Create (in the web server configuration) a new Virtual Name Host (that's the Apache documentation, if you don't use Apache you'll need to find the appropriate docs for your server) with a DocumentRoot pointing to that directory (on the file system. the existence of B is still irrelevent!)
Add an index.html file (you have to have a webpage for the background image to appear on).