CSS Modifications
Requires Access to Share3D Server Code
Editing the Site Appearance
You can edit the look and feel of your server by editing the index.css file.
Example: index.css snippet
For example, to edit the appearance of the tiles in tile layout, you would edit the CSS properties of this snippet found in index.css.
.block {
width:100px;
height:66px;
float: left;
padding:25px;
border: 1px solid #AEC5D4;
border-radius: 4px;
margin-left: 1%;
margin-right: 1%;
margin-top: 1%;
margin-bottom: 1%;
overflow-x:hidden;
overflow-y:hidden;
text-align: center;
vertical-align: middle;
position:relative;
}
Updated less than a minute ago