• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Background Website

if you want to have image as a background, i'd preffer to get fhd image, then in your layout css file find body tag and put there background-size: cover;

link that @Cornex gave you might come handy
 
if you want to have image as a background, i'd preffer to get fhd image, then in your layout css file find body tag and put there background-size: cover;

link that @Cornex gave you might come handy

I ready put background-size: cover;

But when have a big post/big page/ bug the background and it go out of right position..

Its right?:

Code:
background: url('../_img/background/background.jpg') no-repeat top center;
     -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
        background-size: cover;
    font-size: 11px;
    color: #524b3a;
    font-family: 'Arial', Trebuchet MS, Helvetica, Tahoma, sans-serif;
    padding: 0px;
    margin: 0px;
    text-shadow: 0.5px 0px #000;
 
Back
Top