[HELP] ( HABBO RETRO )HOW TO EDIT THE COLOURED BARS (HABBO RETRO) [HELP]

WayneNkomo

New Member
Aug 23, 2014
12
1
It'd be in your CSS and while on your CSS file just search the colour blue and find the word administrator and from there. Remove the word blue and change it from something else.
 

Wickd

The first member of the Knights of the Pink Table
Jan 15, 2013
1,936
612
You have to edit it
Code:
<div class='square-box'>
    <div class='square-content'><div><span>I'm a responsive CSS square with centered content!</span></div></div>
</div>

Code:
.square-box{
    position: relative;
    width: 50%;
    overflow: hidden;
    background: #4679BD;
}
.square-box:before{
    content: "";
    display: block;
    padding-top: 100%;
}
.square-content{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}
.square-content div {
   display: table;
   width: 100%;
   height: 100%;
}
.square-content span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: white
}
 
Last edited:

x5Abrahamx5

Member
Jan 25, 2014
62
5
You have to edit it
Code:
<div class='square-box'>
    <div class='square-content'><div><span>I'm a responsive CSS square with centered content!</span></div></div>
</div>

Code:
.square-box{
    position: relative;
    width: 50%;
    overflow: hidden;
    background: #4679BD;
}
.square-box:before{
    content: "";
    display: block;
    padding-top: 100%;
}
.square-content{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}
.square-content div {
   display: table;
   width: 100%;
   height: 100%;
}
.square-content span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: white
}
Thanks
 

x5Abrahamx5

Member
Jan 25, 2014
62
5
You have to edit it
Code:
<div class='square-box'>
    <div class='square-content'><div><span>I'm a responsive CSS square with centered content!</span></div></div>
</div>

Code:
.square-box{
    position: relative;
    width: 50%;
    overflow: hidden;
    background: #4679BD;
}
.square-box:before{
    content: "";
    display: block;
    padding-top: 100%;
}
.square-content{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}
.square-content div {
   display: table;
   width: 100%;
   height: 100%;
}
.square-content span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: white
}
Where's the file Located?
 

Users who are viewing this thread

Top