MyBB Community Forums

Full Version: Background image not showing in new theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guy's,

I have read before posting and all the solutions i found are not working maybe because some of them are mostly from 2009 so maybe thing have change a bit since then.

I have verified board url and i also force the new theme on all users but nothing show when i refresh the forum page.

Also the few solutions i have found ask to put the background image in various location in global.css and i have tried them all without success.

I tried in body,container and content section and nothing work.

Here the code line i made for it :

background: #000000 url(https:/home/pierre/public/escapingthematrix/images/sumerian_glyph_tiled.png);

Regards Peter
you are using path instead of url in your css and this is wrong , you must use url of your image


Path : /home/pierre/public/escapingthematrix/images/sumerian_glyph_tiled.png
URL : https://escapingthematrix.ext/images/sumerian_glyph_tiled.png


escapingthematrix.ext = your domain
(2022-11-02, 08:34 PM)Mostafa.Shiraali Wrote: [ -> ]you are using path instead of url in your css and this is wrong , you must use url of your image


Path : /home/pierre/public/escapingthematrix/images/sumerian_glyph_tiled.png
URL : https://escapingthematrix.ext/images/sumerian_glyph_tiled.png


escapingthematrix.ext = your domain

Hi Mostafa and thank for replying, i have tried your suggestion and now when i refresh the forum i have only black in the background.

Here the code :
}

#content {
	background: url https://escapingthematrix.online/images/sumerian_glyph_tiled.png;
	background-repeat: no-repeat;
	background-attachment: fixed;
	width: auto !important;
	padding: 20px 10px;
	overflow: hidden;
}
Here my forum link if you want to check : https://escapingthematrix.online
change this
	background: url https://escapingthematrix.online/images/sumerian_glyph_tiled.png;
with this

background-image: url("https://escapingthematrix.online/images/sumerian_glyph_tiled.png");
Thank a lot Mostafa this work like a charm, you made my day, have a nice day.
Regard Peter