BopbeeHelp Center

Fix missing images and CSS

Troubleshoot broken asset paths on uploaded static websites.

What you see

Your site loads but images, styles, or fonts are missing.

browser DevTools → Network
index.html200
css/style.css404
images/logo.png404
Look for 404 errors in the browser Network tab.

Why

The path in your HTML does not match the file location inside the ZIP, or the file was not included in the archive.

What to do

Correct ZIP structure

my-site.zip

├── index.html

├── css/style.css

└── images/logo.png

Extra folder layer (broken)

my-site.zip

└── my-site/

├── index.html

└── css/style.css

Match HTML paths to the folder structure inside your ZIP.

Open DevTools

Open browser developer tools and go to the Network tab.

Find 404s

Reload the page and look for red 404 entries.

Fix paths

Update paths in your HTML to match the folder structure inside the ZIP.

Re-upload

Upload the corrected ZIP.

Example: if your CSS is in css/style.css, link it as ./css/style.css or css/style.css, not /absolute/path/on/your-computer/style.css.

On this page