• Hello,

    There is a rectangular gray and white page to the left of every title of every page on my website. It almost looks as if you should insert a picture in there.

    How do you get rid of this?

    Thanks so much.

Viewing 4 replies - 1 through 4 (of 4 total)
  • How do you get rid of this?

    First you read the FAQ ??

    When i was working on my page I just added css for the item that i didnt want to see. I this case i added

    /*
     * Remove the post type icons from titles
     */
    .format-icon:before {
    visibility:hidden;
    }

    if you have a child theme then put it in your style.css otherwise put it in the custom css field at the bottom of the Customiz’it! page.

    display: none; is better than visibility: hidden; because the latter leaves a space behind where the element would have been.

    On your pages, the h1s are shifted slightly to the right, to make space for the page icons that aren’t there. Change visibility: hidden; to display: none; to move them back to the left margin.

    I know that it is another option ?? I looked at both but chose this one because it left the formatting in a manner more pleasing to my eye.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Getting rid of the page icon to the left of every page title’ is closed to new replies.