What should I do if my image doesn't get rendered? - html

I'm working on a school project and the picture I chose doesn't want to load. I'm pretty new to programming so I don't understand why it is happening. It's never happened before.
<img class="dckep1" src="../K%25C3%25A9pek/dckep1.jpg">
Any ideas how to fix it?

It means that in the path ../K%25C3%25A9pek/dckep1.jpg there isn't any image. You might want to fix that.

Related

why is my mouse doing weird stuff when i'm coding ? (flickering? blinking, maybe?)

I'm sorry since English is not my first language : and since I can't even describe what's going on in my native language, this is going to be complicated.
I'm coding a website and everything was ok so far. But at some point, I attached a link to an image and used hover in css so the picture "shines" when the cursor is on it. The only problem I have is that, when the mouse is on the picture it kinda "panics?" and starts to changing from normal mouse to the pointing finger really quickly. I also struggle to be able to click on the picture when this happens. (I'm on macOS Monterey 12.2 btw)
Since I know I explained that terribly, here's a YT Video showing my problem.
Thank you and sorry again for the whacky English.
Edit 1: Ok so I'm using Brave Browser, and this problem doesn't happen on Safari when I tried it on there, so I really don't know if it's my browser being weird and if I can fix this in any way

Background image gets choppy through different elements

I need a bit of help with my background image. The issue is that it appears to "reset" (not really sure how to describe it) with each element in my HTML code, so the page looks very choppy. Is there anyway to smooth it out? I have tried this in both Chrome and Firefox and get the same result. The background is on my About Me page, below is a link to it. Thank you in advance for your assistance.
First Project
Thank you to anyone that may have read this already, but I finally found the answer to my question here: W3 Schools Backgrounds
Hopefully this will help anyone else that might be having issues with their background.

Baisic table layout background or container issue mainly on Apple device's

So the title pretty much say's it all, In case anyone is interested I'm self thought so please don't be so hasty to say I did no research or put any effort into this because I've messed around with a lot of various things on this somewhat BS page and searched using Google Yahoo and Bing looking for a similar issue. Basically the table layout seems to to get like a default transparent overlay, I noticed its only directly on the table because the background images are clearly visible when scrolling past the top of the page and its visible in each table cell.
Like I said I've tried various things with no luck but if this is just some common newbie mistake please point me to some reading material or even a good book for web design as I could really use the know how and wouldn't mind learning something as apposed to shooting in the dark with random bits of HTML, CSS and JavaScript in the little free time I do have..
*Also I was doing all this using blogger as my "host" mainly because I plan to ingrate the blogger framework or whatever into the page after I know its good to go. Find a link to the page below, If you need the raw HTML not formatted to blogger just let me know.
https://layout-dev.blogspot.com
Turns out the image host for the body background-image wasn't loading in the image on apple device's, still not sure why but after relocating the image to my personal Dropbox and directly linking to it that solved the problem. *As weird as that may sound the original url was http://subtlepatterns.com/patterns/binding_dark.png and simply replacing it with https://dl.dropbox.com/s/njcu65h90cmsbp8/binding_dark.png solved the problem. -Figured I should post the answer just in case someone ever has a similar issue.

Image is partly clipped

I have received a table-html designed site to complete it. Now I have encountered a problem and need your help. Would it be possible for you to see why the top right image is not displayed completely? I have tried a a lot and found nothing.
Here is the link to homepage:
http://myperfume.ir/
Here is the link to full image so that you can see how much it is clipped:
http://8pic.ir/images/03017006756162873819.jpg
Thanks
The image that is being used as the row's background is this:
http://myperfume.ir/images/2_02.png
Which is already clipped, so you'll need to change it.
Your best bet would be to recode the entire website without using tables. You are going to have all kinds of headaches with this structure.

Chrome and div background layers not loading properly

This is a very weird thing that i've experienced . I've been working on a project lately www.bandness.com, which allows music groups and bands to upload their music. The artistic department has been very keen and precise and they've done an incredible work that allows the bands to have gorgeous profiles .
However, when on Chrome (i've noticed this only happens in chrome), when you enter a profile the background image doesn't load properly until you scroll over it or you "select" the div layer or the ones on top of it.
here are some examples of what i'm talking about
you need to select the layer so it works properly, and that is bugging annoying!!
here you have another example
and this is how the website should be seen without the bug in the left screen
Why does this happen?
The website is www.bandness.com, click on any of the groups where it says "TOP 5 GROUPS" or on the group for each song in "TOP 5 SONGS" and you'll probably spot what I'm talking about.
This has happened to me in chrome, on a macbook pro with the latest OS release. As well as in Windows 8. It bugs me because I have NO idea what is causing this and I fear a chrome bug.
How could it be fixed? Any suggestions are appreciated, I thought of using jQuery to make the layer dissappear/appear or something like that... but i'm unsure of whether this will work.
Ok, so I'm posting this as a help for anyone that suffers the same consequences of this bug at any time.Bear in mind the answer implies using jQuery.
As Christopher kindly pointed out earlier, I tried to do $(SELECTOR).hide().show(), but that didn't make it.
Then I decided to try with $(SELECTOR).hide(100,function(){$(SELECTOR).show()}); ensuring that the effect of showing only happens once the div layer has dissapeared.(that way it actually appears and dissappears).
The solution worked, however this should not be needed and it doesn't provide an answer to why this is happening, but it "kinda" makes the trick .
$(SELECTOR).fadeOut(100,function(){ $(SELECTOR).fadeIn()}); makes this happen in a much fancier way. Again as I said this isn't a fix, it's just a workaround that might get you somewhere if you ever suffer this problem!