Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #51473
    Kim
    Participant

    Sakin,
    A couple question about Category Archives: label.

    1. How can I change Category Archives at the top of the page to just Category.
    2. How can I remove remove grey line AND the space that it takes up below the Category Archive
    3. How can I move the Category Archives up and to the left.

    #51563
    Sakin
    Keymaster

    @Kim:
    1. To change the category archives label, you need to build child theme. You can refer to this blog post http://catchthemes.com/blog/create-child-theme-wordpress/. Then copy category.php from catch-flames-pro to your child theme and edit

    <?php printf( __( 'Category Archives: %s', 'catchflames' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?>

    2. You can remove grey line and adjust the padding-top and padding-bottom as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    .page-header {
        border-bottom: none;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    3. Sorry I don’t get it what you mean by this.

    #51902
    Kim
    Participant

    Thanks!
    #2 solved #3 as well. Thanks again!
    Kim

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘category archives label’ is closed to new replies.