Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #82191
    shikarime
    Member

    Hi! A few minutes ago I update my catch everest theme to pro version and have some questions. First of all I want to tell that I made also child theme and it work. I delete “search” from header.
    Now I want to move Header text on space between header image and space where “search” was, so it will look in one line: image – little bit free space – header text – a little bit free space. I can do it only with text under image or delete image or text, can move it.
    Second my question about blog categories. I made 3 pages and I need for every page different category, so if you click on 1st page you see posts only from 1st category, the same for 2 and 3 page. I can do only “front page” for all posts and “post page” (only for one page, cant do the same for 2-3 pages). So I need to make the same also for 2 others pages.
    My site only on my local host, but if you need some images or information, I can do it also can make some photoshop to show how I want see my pages if I’m not clearly describe my qestions. Thank you!

    #82216
    shikarime
    Member

    Hi again! I fixed my problem with header and logo image, use this instruction http://catchthemes.com/support-forum/topic/full-width-logo/ and make in on full page with text on it. But now when I move my mouse on header text it makes 50% visible. How can I fix it? I saw on that site from link I gave you, it works good, only header image makes little bit lighter but not text.

    #82220
    shikarime
    Member

    I think problem with header image, because when I move mouse on it, it make lighter (the same with all images on page) and this lighting effect above the text. How can I remove this effect from header image?
    I saw some websites with catch everest pro theme, which didn’t have this effect on all pages and all images.

    Wait for your answers. Thank You!

    #82227
    Mahesh
    Participant

    Hi @shikarime,

    Thank you for using Catch Everest Pro.
    I’m glad that you tried on your own and fixed your issue. I checked the your problem with the header image on hover and is working fine as on the site you’ve mentioned, there is no 50% text visible issue. Please share an image of it to make it clear. It would be more easier if we check it as a website.

    The next issue about the categories in different page, instead of creating custom pages, you can do it by adding categories in menu.
    Go to “Dashboard=> Appearance=> Menu” then click on “Categories” dropdown then check on the categories you want then click “Add to menu” button and then save it.

    If you have any questions, let me know.

    Regards,
    Mahesh

    #82259
    shikarime
    Member

    Hi Mahesh!
    Thank you for your advice, when I read it, I just have only one problem from all I type before, its about categories for every page. I made like you wrote me and now my pages is archive of categories. I think its good. Just one little visual problem, I don’t like. I add image Site image it from my local host site and in red circle you can see words “Category Archive”,can I change this words to title of pages for my every page or delete it? I like description bellow, but don’t like “category archive”.
    Thank you!
    Roman.

    #82282
    Mahesh
    Participant

    Hi @shikarime,

    If you don’t want to display “Category Archive”, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    .category #content .page-title {
        display: none;
    } 

    Or

    Create a child theme (You can find the details on how to create child theme HERE), then copy the archive.php from main theme to child theme, and edit the archive.php.

    Modify the following code:

    if ( is_category() ) {
        printf( __( 'Category Archives: %s', 'adventurous' ), '<span>' . single_cat_title( '', false ) . '</span>' );
    }

    Like this:

    if ( is_category( 'sample-category-1' ) || is_category( 'sample-category-2' ) ) {
        printf( '<span>' . single_cat_title( '', false ) . '</span>' );
    }
    elseif ( is_category() ) {
        printf( __( 'Category Archives: %s', 'adventurous' ), '<span>' . single_cat_title( '', false ) . '</span>' );
    }

    Regards,
    Mahesh

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Need header changes and categories for every page’ is closed to new replies.