MyBB Community Forums

Full Version: Using Novus Black and Need Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I am looking to change the grey background color to an underwater image so to speak.

worldofsharkfishing.com if you want to look at what I mean. Please help. Thanks!
can you show with an image which contents background color you want to change ..
you can use the image as background for the body through global.css ; see css - background
Can you give more details please? I am pretty new to this and would really appreciate it!
admin panel --> themes --> novus black --> global.css --> Edit Stylesheet: Advanced Mode (tab)

sample style code for body tag :
body {
	background: #efefef;
	color: #000;
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
	text-align: center; /* IE 5 fix */
	line-height: 1.4;
}

you have to change background: #efefef; with background: url(image path) #efefef;
PERFECT
How do I do that if I dont have a URL like if I uploaded it to my images folder on my site??
nevermind! I got it! Thanks!
Sorry one more question!! How can I make the width and height of the forum section so that more of the background image is showing??
may be you like to remove background color for #container in global.css
to make your background image more visible - like below code

#container {
width: 95%;
/* background: white; */
border: 1px solid #DEDEDE;
color: black;
margin: 20px auto 0;
padding: 20px;
text-align: left;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}

that is, removing background: white; in above style

I don't have a background white?
mine says #fff
oh! okay - remove that background: #fff; ; see also html color codes
Pages: 1 2