displaying lines in #restaurant

GK User
Sun Sep 28, 2014 2:22 pm
First of all I want to say thank you for the template. Very cool and unusual. Almost all of the problems faced by the already described and dismantled. You - the best.

Noticed a small oddity in the display lines in IE next to Text in #restaurant. I have seen it only in Internet Explorer. In all other browsers everything is as it should be.

gavik.jpg
User avatar
Fresh Boarder

teitbite
Mon Sep 29, 2014 8:43 am
Hi

Thank You for letting us know. I'll pass this to programmers for fix.
User avatar
Moderator

teitbite
Thu Oct 02, 2014 7:14 pm
Hi

I'll got a message that this fix will be included in upcoming update.
User avatar
Moderator

GK User
Sun Oct 05, 2014 7:46 am
The fix for this issue is following:

please replace in the gk.stuff.css file the following fragment:

Code: Select all
.gk-avatar:before,
.gk-avatar:after {
   border-top: 1px solid #d5d5d5;
   content: "";
   height: 1px;
   left: auto;
   position: absolute;
   top: 25px;
   width: 40px;
}
.gk-avatar:before {
   margin-left: -55px;
}


to:

Code: Select all
.gk-avatar:before,
.gk-avatar:after {
   border-top: 1px solid #d5d5d5;
   content: "";
   height: 1px;
   left: 50%;
   position: absolute;
   top: 25px;
   width: 40px;
}
.gk-avatar:before {
   margin-left: -80px;
}
User avatar
Administrator


cron