Jump to content

Safari display issue


Recommended Posts

Hey All,

 

Having had someone remove the currency and language block from top of Kurouto skin, I just discovered that, in Safari, the "login in or register" at top right doesn't display fully.

 

It only displays "or" ...but the words "log in register" do show when the mouse pointer is on top of text...not as a roll over, but as a message under the pointer (not sure how you refer to that)' alt='' class='ipsImage' width="1000px" height="598px">

 

Can anyone help on this as most of my visitors are using Safari?

 

See screen shot attached,

 

geoff

 

' alt='' class='ipsImage' width="1000px" height="598px">

Link to comment
Share on other sites

The stylesheet on common.css line 49 has the code setting them to display inline-block and with a height of 0. Bit unusual that, getting rid of both of those should fix the issue.

 

However, it's also used for links in the header.. which might be needed, so what you might have to do is split those out into two seperate sections

#account a, #header a {

    color: #fff;
    font-weight: bold;
    padding-right: 1px;
    text-decoration: underline;
}

#header a {

    display: inline-block;
    height: 0;
}
Link to comment
Share on other sites

Hey Toucan...thanks for your reply....

 

just to be clear, as I'm novice at this stuff....

 

I can either comment out as below..

 

color: #FFF;
/* display: inline-block; */
font-weight: bold;
/* height: 0px; */
padding-right: 1px;
text-decoration: underline;
 
or replace
 
#account a, #header a {
color: #FFF;
display: inline-block;
font-weight: bold;
height: 0px;
padding-right: 1px;
text-decoration: underline;
 
with the code you've provided?
 
Thanks in advance for your help..
 
Geoff
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...