Ok to make the background black you can just get rid of
Code:
background-color: #579EC7;
and change
Code:
background-image:url(./images/body1.png) no-repeat center top;
to EDITED
Code:
background: #000 url(./images/body1.png) no-repeat center top;
As far as decreasing your forum width, inside the same .css file look for
Code:
.outside {
margin: 0 auto;
width : 978px;
padding: 0;
}
at the bottom of the file and try decreasing the width there to about 765px.
Though that may make your forum very small and I am not too sure on how well it will scale. You may just need to increase the gray area of the background image.
Or just copy and paste the below code into the style.css file:
Code:
/* replace background color */
html, body {
background: #000 url(./images/body1.png) no-repeat center top;
background-repeat: no-repeat;
color:#5F6476;
}
.top-left, .top-right, .bottom-left, .bottom-right {
background-image: url("./images/rounded.gif");
height: 53px; /* CHANGE: replace by the height of one of your corners (= 1/2 height of the image) */
font-size: 2px; /* DNC: correction IE for height of the <div>'s */
}
.top-left, .bottom-left {
margin-right: 53px; /* CHANGE: replace by the width of one of your corners */
}
.top-right, .bottom-right {
margin-left: 53px; /* CHANGE: replace by the width of one of your corners */
margin-top: -53px; /* CHANGE: replace by the height of one of your corners */
}
.top-right {
background-position: 100% 0; /* DNC: position right corner at right side, no vertical changes */
}
.bottom-left {
background-position: 0 -53px; /* CHANGE: replace second number by negative height of one of your corners */
}
.bottom-right {
background-position: 100% -53px; /* CHANGE: replace second number by negative height of one of your corners */
}
.inside {
align: right;
background-image: url("./images/bg.gif"); /* YCC: background-color of the inside */
background-repeat: repeat-y;
background-position: 100%
color: #000000; /* YCC: default text-color of the inside */
padding-left: 0px; /* YCC: all texts at some distance of the left border */
padding-right: 0px;
padding-top: 1px; /* YCC: all texts at some distance of the right border */
}
.notopgap { margin-top: 0; } /* DNC: to avoid splitting of the box */
.nobottomgap { margin-bottom: 0; } /* DNC: to avoid splitting of the box */
.outside {
margin: 0 auto;
width : 768px;
padding: 0;
}
and adjust the .outside width value to your liking.
Also your going to need to change a value in the http://testingforum.nyxxunderground....stylesheet.css file:
Look for:
Code:
#logo {
color: #FFFFFF;
padding: 50px 0pt 0pt 400pt;
text-align: center;
}
and change
Code:
padding: 50px 0pt 0pt 400pt;
to
Code:
padding: 50px 0pt 0pt 350pt;
You can adjust the pt value depending on where you want the logo being displayed, but with it being displayed at 400 it overlaps the right edge of the forum and is hovering onto the background image.
Bookmarks