1. В стилях строки 625-639:
.item-link:before {
content: '';
display: block;
width: 100px;
height: 1px;
background: #1a1a1a;
position: absolute;
top: 50%;
left: 50%;
margin-left: -50px;
z-index: 2;
opacity: 0;
transition: all .3s ease;
}
.item-link:after {
content: '';
display: block;
width: 1px;
height: 100px;
background: #1a1a1a;
position: absolute;
top: 50%;
left: 50%;
margin-top: -50px;
z-index: 2;
opacity: 0;
transition: all .3s ease;
}
удалите параметр - background: #1a1a1a; и после исчезнет данный крестик при наведении или вовсе удалите эти стили, что я привел выше.
2. Меняем в стилях строка номер 204:
#loader {
position: fixed;
background: #fff url(/img/loader.gif) center no-repeat;
width: 100%;
height: 100%;
z-index: 9991;
}
вот ссылка на ваш загрузчик - http://diditen.ucoz.net/img/loader.gif текущий меняйте на свой новый
3. Стили строка номер 768:
#go-top {
display: block;
position: fixed;
width: 36px;
height: 36px;
line-height: 36px;
z-index: 9999;
bottom: 22px;
right: 22px;
border-radius: 40px;
text-align: center;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: all .3s ease;
}
вот здесь right: 22px; смените right на left и будет достаточно.