Hi Im making a homepage on this link : http://stephaniie.com/_testlab/beta1/index.html
I Love to know how to remove these stupid white lines. Can someone please help?
Edit: I tried to use this method by Michael.
I changed html - div to " quarter.scale-thumb " and added in CSS.
.quarter.scale-thumb {
-webkit-transform: scale(0.2);
-moz-transform: scale(0.2);
-o-transform: scale(0.2);
transform: scale(0.2);
}
Didnt work :(
The code Im using in minimap.css is:
.minimap {
z-index:10000;
position:fixed;
cursor:pointer;
font-size: 0em;
display:block;
padding: 0;
margin: 0;
height: auto;
border: none;
}
.miniregion {
z-index : 10001;
position : fixed;
background : transparent;
border: 2px solid silver;
border-radius: 100%;
cursor: pointer;
cursor: -webkit-grab;
cursor: -moz-grab;
display:block;
padding: 0;
margin: 0;
height: auto;
border: none;
}
.miniregion.dragging {
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
display:block;
padding: 0;
margin: 0;
height: auto;
border: none;
}
.miniregion:hover {
box-shadow:0 0 .400em darkgrey;
display:block;
padding: 0;
margin: 0;
height: auto;
border: none;
}
.noselect {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
padding: 0;
margin: 0;
height: auto;
border: none;
}