MyBB Community Forums

Full Version: Template background section
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

So i'm making a forum for my community (https://reastic.com/mybb/index.php#) with some friends but we can't find the section of our template to put in the background html script, we're using "Fragstar Red Templates" this is a screenshot of all the sections:

[Image: MKPpWDwwbsizrhw8q7FHhhhUTxFecDo8Yd6bEJuI...ize_mode=3]

where do i put <body background="backgroundreastic.png">

</body>
Did you purchase that Fragstar theme?
I downloaded it for free
i couldn't find a fragstar website or a different origin than that site.
Go to ACP>Templates & Styles>Your Theme Name>global.css>Edit the stylesheet in Advanced Mode>Replace 1-35 Line with the following:

body {
    background: url(images/homepagelogo.png) ;
    background-image: url(images/homepagelogo.png);
    text-align: center;
    line-height: 1.4;
    margin: 0;
    
    font-family: Tahoma, Verdana, Arial, Sans-Serif;
    font-size: 13px;
}


a:link {
    color: #0072BC;
    text-decoration: none;
}

a:visited {
    color: #0072BC;
    text-decoration: none;
}

a:hover,
a:active {
    color: #0072BC;
    text-decoration: underline;
}

#container {
    background: url(images/homepagelogo.png);
    color: #333;
    text-align: left;
    line-height: 1.4;
    margin: 0;
    min-width: 990px;

Change the "background: url(images/homepagelogo.png)" with the location where your image is located.
Thank you so much <3