MyBB Community Forums

Full Version: Background just gone?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay, so I was visiting my forums http://www.teamobey.com/forums/ and the background as you can see is all white now, any idea why this is? Just randomly happened without me adding in anything or changing anything.
In global.css you don't have any styling associated to body tag.
@Johnny what would I put?
Re-upload your themes .xml, it appears it's corrupt. If you'd just like a background use the code below.

Color:
 background: #000;
Image:
 background-image:url(http://site.com/image.png);
By inspecting you forum page (via dragonfly) it looks that you are missing good amount of content in global.css (or other css files where header,navigation and body are styled).

Edit:

In AdminCP -> Templates and styles -> your theme template set -> Ungrouped Templates > headerinclude template

<link rel="stylesheet" type="text/css" href="http://ob.iratedesigns.com/static/default/style.css"/>

replace with

<link rel="stylesheet" type="text/css" href="http://iratedesigns.com/static/default/style.css"/>

Btw if you have deleted previous content in global.css download it (from attachment) and repaste it (under AdminCP -> Templates and styles -> themes > <your current theme> -> global.css )

and fix the style.css link (header,background,footer and navigation areas are styled from that file).
Thank you so much!