CSS Background Image doesn't load - python

I'm trying to load an image to my page and set it as my background, below is the css and html that I am working with. The CSS page seems to load, as my test font and background colors show up but for whatever reason my background image doesn't.
I am using Django as my web framework.
Appreciate the help!
HTML:
<!DOCTYPE html>
{% load staticfiles %}
<html lang="en">
<head>
<title>Test</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="{% static 'personal/css/frontpagebackground.css' %}" type = "text/css"/>
</head>
<body>
<p>This is a test</p>
</body>
</html>
CSS:
body
{
background-image:url(personal/static/personal/img/home.jpg) no-repeat;
background-repeat:no-repeat;
background-size:100%;
background-color: green;
min-height: 100%;
}
p {
font-style: italic;
color: red;
}

You used background-image, so the no-repeat is not actually working. Try adding the no-repeat below as background-repeat: no-repeat;.
background-image: url('image-url-here.png');
background-repeat: no-repeat;

I've had problems like this with django, primarily because my {% static %} location was confusing me. I think this is a non-css issue, and a path issue.
It helped me to use the dev console to check for Resource Failed To Load error. It will spit out the path that the machine is looking for, and it's likely different than what you specified.
I.e. is your css file located along
personal/static/personal/img/home.jpg
relative to your css file? You might just need to back up a directory, i.e.
../personal/static/personal/img/home.jpg
Either way, the console should give you your path, and use that to determine where your CSS file is digging for the image.

If your CSS files are in a path such as /static/css/style.css
and the images are under a path such as /static/images/test.jpg
then you have to place the test.jpg image directly in the folder with the style.css i.e. /static/css/test.jpg and in your HTML file give it the name test.jpg without using the static path i.e. background-image:url('test.jpg');:)

Related

Button image not showing

I'm just learning how to use Django and HTML, and I encountered such a problem that my image is not displayed on the button, I don't understand what the error is and I will be grateful if someone can help me fix it
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title></title>
<style>
button {
background-image: url("/main/static/main/img/i.jpg");
padding-left: 32px;
padding-top: 10px;
padding-bottom: 10px;
background-repeat: no-repeat;
width: 320px;
height: 320px;
}
</style>
</head>
<body>
<button></button>
</body>
</html>
<button>
<img src=path />
</button>
would be easy solution? It depends how do you want it to be displayed. As button and inside a image or just image which can be clicked on?
Your image path must exists somewhere where it can pull it from.
EDIT: If you have Firefox Web Browser you can probably see in console (by pressing F12 on keyboard) what's the error message help you identify the source of the problem. I tried your code with another path to image and it works just the image is not centered vertically nor horizontally

passing video_url to html template in django

I am trying to dispaly video in my html page by passing url as dict to template in django view named as succes
def success(request):
url_video="/media/video1.mp4"
return render(request,"payment/success.html",{"url_video":url_video})
my template code is all clear it has no errors
i am getting this error on command prompt
Not Found: /succes/media/video1.mp4
I don't understand why i get success/ in front of url i have passed.The video file is in media/video1.mp4 location but it is not getting displayed.let me know any changes i need to make.thanks
EDIT:
TEMPLATE:
<!DOCTYPE html>
<html>
<head>
<style> #myHeader { background-color: lightblue; color: black; padding: 40px; text-align: center; }
</style>
</head>
<meta name="viewport" content="width=device-width">
<body>
<h1 id="myHeader">"{{ url_video}}"</h1> <br>
<video width=""height=""controls>
<source src="{{ url_video}}" type="video/mp4">
</video>
</body>
</html>
Sounds like a relative path problem. Make sure you have:
url_video="/media/video1.mp4"
and not
url_video="media/video1.mp4"
Without the leading slash, it will try to find in directory of current url

Django not loading images from CSS file

I have my HTML file which links to the CSS and it is working fine
<link rel="stylesheet" href="{% static '/Website/css/bootstrap.min.css' %}" />
<link rel="stylesheet" href="{% static '/Website/css/style.css' %}" />
<link rel="stylesheet" href="{% static '/Website/css/ionicons.min.css' %}" />
<link rel="stylesheet" href="{% static '/Website/css/font-awesome.min.css' %}" />e here
Then I have several images in the HTML file which are loading fine
<link rel="shortcut icon" type="image/png" href="{% static '/Website/images/fav.png' %}"/>
One div element id <div id="lp-register"> obviously links to above style.css selector as per below
#lp-register{
background: linear-gradient(to right, rgba(0,0,0, 0.7) , rgba(0,0,0, 0)), url('../images/test.png') fixed no-repeat;
background-size: cover;
background-position: center;
position: absolute;
top: 0;
width: 100%;
min-height: 100vh;
}
the images are in the static folder structured as this
static
- images
- test.png
and the setting.py has the correct static file definition
STATIC_URL = '/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static')
]
When I load the HTML page that particular image is not being loaded, and no error I see in the Django server, furthermore if I inspect the element I see that url('../images/test.png') remain with the old settings
linear-gradient(to right, rgba(0,0,0, 0.7) , rgba(0,0,0, 0.7)), url("http://placehold.it/1920x1280") fixed no-repeat
and does not change no matter what. In addition to that if I inspect the element and modify the settings manually to
linear-gradient(to right, rgba(0,0,0, 0.7) , rgba(0,0,0, 0)), url('../images/test.png') fixed no-repeat
which is what I want, seems that is working fine but when I change it in CSS does not
Can anybody help please?
{% load static%} in your HTML and then load the stylesheet.
You have set the static files in the settings.py the correct way, I think this should work.
url('../images/test.png') for this kind of linking in CSS we have to use this way to call these static files
url('{% static 'images/test.png' %}')

pyFlask - Using stylesheets, html not loading file.css

I am trying to style a website using a stylesheet.css file.
In one of my html pages, I have the <link rel="stylesheet" href="stylesheet.css"> element. The css file is in my templates folder (image):
When I start the application and go to a page, The console reads:
"GET /home/stylesheet.css HTML 1.1/" 200
But the page doesn't appear to load correctly (meaning none of the CSS settings are applied). I am using repl.it to run this website.
Here is the link to the repl: sm--supermechm500.repl.it [REPL.IT]
Here is my css file:
#import url('https://fonts.googleapis.com/css?family=Aldrich&display=swap');
body {
align-items: center;
text-align: center;
background-color: #000000;
width: auto;
height: auto;
font-family: 'Aldrich', sans-serif;
}
I have already reviewed this question: Application not picking up css file
, but I didn't quite understand the answer provided, or the question's code.
What is the proper way to make flask render a page using a stylesheet?
After some research, I found that I have done it all wrong.
I needed a "static" folder in my directory, in which is another folder named "css".
In that folder is the stylesheet.css
/ = folder
main.py
/templates
pages.html
/static
/css
stylesheet.css
other_files.txt
And within the html, replace<link rel="stylesheet" href="stylesheet.css">
with<link rel="stylesheet" href="{{ url_for('static', filename='css/stylesheet.css') }}">
And just a note, just because the console says status code "200" FOUND doesn't mean it was loaded, or loaded correctly.
To be more specific, actual solution is
To create a "css" folder in "static" folder.
Add css in path of ".css" file
Change => href="{{ url_for('static', filename='stylesheet.css') }}" to href="{{ url_for('static', filename='css/stylesheet.css') }}"
OR
Change => href="../static/main.css" to href="../static/css/main.css"

Python-Flask not accepting custom fonts

Folder Blueprint
Templates
File.html
Static
Fonts
Style
In the css file , i tried :
#font-face{
font-family:<Font_name>
src:{{ url_for('static',filename='fonts/<font_name>.ttf') }} ;
}
What changes are to be made to add custom fonts ?
You can't use template tags in css. the Jinja template tags are only meant for html files and templates not css.
To use a css file, you have to insert the link manually there, something along the lines of:
#font-face{
font-family: customfont;
src: /static/Fonts/font.ttf';
}
The only way to get around this is to serve a template, that contains the css embedded in <style></style> tags that way flask would be able to interprete the template tags. so with that you should have something like this
<style>
#font-face{
font-family: <Font_name>
src: {{ url_for('static',filename='fonts/<font_name>.ttf') }} ;
}
</style>
Assuming your project directory is setup such (Arrows = level of directories):
~/
>static/
>>fonts/
>>>MyFont.woff
>templates/
>>index.html
>main.py
the following implementation of a fontface in your index.html's style tag should work:
<html>
<head>
<style>
#font-face {
font-family: "MyFont";
src: url("/static/fonts/MyFont.woff");
}
</style>
</head>
</html>

Categories

Resources