Category Pages

  • Unknown's avatar

    Hello, I want to remove the word on my catergory pages that says “Category Archive”. Help?

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

  • Unknown's avatar

    It might be possible using the css customization. I don’t know if it will work on all screen sizes, etc. You can preview css without buying by going to Dashboard, Appearance, Custom Design. Choose the CSS where it will give you an opportunity to Preview. You might have to play with the margin number and I really don’t know if it will work on all screen sizes.

    This is the code I was playing with:

    .page-title {color: transparent;}
    .page-title span { margin-left: -307px;}
  • Unknown's avatar

    This is a MUCH BETTER solution I found by searching the forum.

    .archive .page-title {
    visibility: hidden;
    }
    
    .archive .page-title span {
    visibility: visible;
    float: left;
    }
  • The topic ‘Category Pages’ is closed to new replies.