Hiding the Tags beside the images in my posts in AutoFocus

  • Unknown's avatar

    How can I remove the long list og tage beside my pics when you click on the actual posts? I’m new with this..

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    The date and everything underneath it is in a single selector in the CSS which means you either hide everything to the right of the image/post, or nothing.

    One suggestion though is that you are using too many tag in general. You want to try and keep it down around 10. Search engines get suspicious when they see so many tags and thing someone is trying to game the system. Abuse of meta tags/keywords was what caused all the search engines to stop even looking at them at all. They simply pay no attention to them anymore, and I suspect that will happen with blog-style tags at some point as well.

  • Unknown's avatar

    How would I hide everything?

  • Unknown's avatar

    This hides it all.

    #entry-meta {
    display: none;
    }
  • Unknown's avatar

    Wait, that also hides the date on category, tag and archives pages. If you want to retain the date on those page, but not the full metadata on single post pages, do this instead.

    .single #entry-meta {
    display: none;
    }
  • The topic ‘Hiding the Tags beside the images in my posts in AutoFocus’ is closed to new replies.