• 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!

ShadowCores Layout for Znote AAC

Webo

Otland 4ever
Joined
Oct 20, 2013
Messages
621
Solutions
10
Reaction score
229
Location
Warsaw
Layout for Znote AAC based on twifysoft.net using bootstrap-3.3.7
Download


SS:
687474703a2f2f692e696d6775722e636f6d2f66534d41316e732e706e67


687474703a2f2f692e696d6775722e636f6d2f6630413444724e2e706e67
 

Attachments

  • znote-layout-bootstrap-master.zip
    322.6 KB · Views: 555 · VirusTotal
Last edited by a moderator:
i have a problem. Dont can use this Layout...? How can i install Bootstrap? Layout bugged at me
 
I have a question with this layout, how can i change background color? Tried on layout/styles/basic.css line 4 but nothing happens ^^
 
I have a question with this layout, how can i change background color? Tried on layout/styles/basic.css line 4 but nothing happens ^^

Change the first lines of this in your layout/css/style.css:
Code:
body {
  background: no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: red !important;
}

I have added this line:
Code:
  background-color: red !important;
 
Change the first lines of this in your layout/css/style.css:
Code:
body {
  background: no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: red !important;
}

I have added this line:
Code:
  background-color: red !important;

thanks!! and how to do if i want to load an image background?? also what dimension it should have?? 😬

edit: i added this
HTML:
 background: #F8F7EE url(../images/tibiart.png);
but i still dont know how to fit it or what dimensions should image have
 
Last edited:
finally i figured out how to make this work, with scrolling included, here is the code if someone needs it i posted in a different message to make it clear
CSS:
  background: url(../images/bgo.png);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: auto;
  background-color: black  !important;

Ive found this link very usefull on this kind of stuff
 
Last edited:
Back
Top