• Resolved popsitivity

    (@popsitivity)


    Hi eveybody.

    I’m using a child theme based on Twenty Eleven theme.
    I’d like to know if it’s possible to remove post format name as ‘image’ or ‘quote’ i currently see in my blog page.
    Actually, i don’t know if it should be shown or if it is me, who modified something in a wrong way.
    where should this information should be find?
    and how can i remove it from being displayed?

    thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • It’s in each template…

    i.e. content-aside.php, content-quote.php

    <h3 class="entry-format"><?php _e( 'Aside', 'twentyeleven' ); ?></h3>

    Displays is for Asides for example

    That is the intended behaviour of 2011.

    Since it is hardcoded in like that, you could either drag each of the files to your child theme and delete that link, or I believe you could just apply a display:none to h3.entry-format in your child style.css

    Thread Starter popsitivity

    (@popsitivity)

    GRREAT! it worked using your oneshot-onekill method in style.css

    i removed this:

    .entry-header .entry-format {
    color: #666;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2.6em;
    position: absolute;
    text-transform: uppercase;
    top: -5px;
    }

    and added:

    .entry-header .entry-format {
    display: none;
    }

    thank you.

    Glad you got it figured out!

    Thread Starter popsitivity

    (@popsitivity)

    HELP!

    i can see those little capital letters descriptions even in each category page.

    CATEGORY ARCHIVES: POP TUNES

    do you mind help me to let them hidden?

    thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Post Formats name shown in blog page.’ is closed to new replies.