After reviewing your sites code, it seems that your problem lies in mobile.css file around line number 160:
- Code: Select all
#gkTopLinks a {
border-left: 1px solid #fff;
border-left: 1px solid rgba(255, 255, 255, 0.5);
display: block;
float: left;
height: 46px;
margin-left: 5px!important;
margin-top: 0;
text-indent: -9999px;
width: 38px;
}
using text-indent: -9999px hides all text and images from inside of this element, so that would be a place to start.
So the first step is to remove text-indent from that element.
Also around line no 105 of the same file:
- Code: Select all
#gkTopLinks {
float: right;
font-size: 11px;
line-height: 11px;
margin: -26px 0 0 0;
text-transform: uppercase;
}
replace with:
- Code: Select all
#gkTopLinks {
float: none;
font-size: 11px;
line-height: 11px;
margin: 0 0 0 0;
text-transform: uppercase;
}
also add:
- Code: Select all
#gkTopLinks a#btnLogin {width: 100px;}
to the same file.
That would be just for start.