• Resolved jpite

    (@jpite)


    I’m getting a question mark icon to the left of the page title (all pages) in Safari. FF Mac the question mark is replaced with a vertical box with a few lines in it; same for IE and FF on PC. All pages, images, CSS, and links are fine.

    Note: the domain I added WordPress to is a parked domain – could that be a Safari issue? Can you provide the link to that question mark so I can replace it with my own icon?

    Also: using FF and IE (Parallels > Windows XP Home) the circle images on the homepage appears as squares and do not mouse over to enlarge – they do work fine in Safari and Mac Fox.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jpite

    (@jpite)

    Sorry all for not fully checking existing posts first. But to summarize, here are the answers to removing the weird question mark in Safari (problem is it’s a font that Safari switches out the character on):

    To remove Icon preceding Page Title Only, add this to your custom CSS (Customizer screen):
    .format-icon:before {
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    padding-right: 10px;
    opacity: 0.2;
    position: relative;
    top: 8px;
    display: none;
    font: normal normal 1.2em/1 ‘entypo’;
    }

    To remove Icon and Page Title, add this to custom CSS
    .page .entry-title {
    display: none;
    }

    The answer “To remove Icon preceding Page Title Only” above seems to be trying to do a lot of things. I’m wondering what it is mennt to achieve. can you explain it to me because i just used

    .format-icon:before {
    display:none;
    }

    I also experimented with

    .format-icon:before {
    visibility:hidden;
    }

    one takes the icon out but leaves the formatting and spacing and the other takes out the icon and the space/formating that came with it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Question Mark Icon on Page Title in Safari’ is closed to new replies.