MyBB Community Forums

Full Version: New some help!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there

I am looking to add this background wallpaper http://www.ricaperrone.com.br/wp-content...ss_bg1.jpg to my forum with the same layout as this https://web.archive.org/web/201111220023...ddict.com/

my website is www.footyaddict.co.uk

Any help with this would be very much appreciated

Thanks
on global.css find body class and replace it with this:

body {
    background: url(http://www.ricaperrone.com.br/wp-content/uploads/2013/01/grass_bg1.jpg) top center no-repeat fixed;
    color: #333;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    font-family: Tahoma, Verdana, Arial, Sans-Serif;
    font-size: 13px;
    overflow-y: scroll;
}
 
you also maybe want to remove the background color of the "content" and  "logo" class also located in global.css
(2016-12-01, 04:04 PM)subzr1 Wrote: [ -> ]on global.css find body class and replace it with this:

body {
    background: url(http://www.ricaperrone.com.br/wp-content/uploads/2013/01/grass_bg1.jpg) top center no-repeat fixed;
    color: #333;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    font-family: Tahoma, Verdana, Arial, Sans-Serif;
    font-size: 13px;
    overflow-y: scroll;
}
 
you also maybe want to remove the background color of the "content" and  "logo" class also located in global.css

Thank you very much, that now looks great!