Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #27108
    Melody
    Participant

    Hello all

    I have 3 questions for wich i hope to get answers here.

    1)
    i would like for the slider to be my header…
    so that the slider will be my header and the slider as it now is, will not be visible…
    is that possible and if so how do i proceed?

    2)
    I would like the footer-meta and the entry-meta to be one.. and placed at the beginning of the blogpost…
    what do i have to do to accomplish that?

    3)
    My menu is now showing beneath the header. I would like it to be above the header.
    How to achieve that?

    My blog is http://melodymusic.nl

    Greetings and thanks in advance

    #27150
    Sakin
    Keymaster

    @Melody:
    1) You cannot add that slider as header. Sorry no option in this theme. BUt there is option in Pro version to make the slider full width. For this you need to build child theme and change the position.
    2) Again there is no option for this. You need to build child theme and then copy content.php to your child theme and edit the code.
    3) You can create custom menu from “Appearance => Menus” and then assign location as “Fixed Header Top Menu” from “Appearance => Menus => Manage Location”. Also you can add menu in Header Right Sidebar.

    #27160
    Melody
    Participant

    Hello Sakin

    Thank for your answers!

    I change themes to often so i won’t buy it, sorry.

    3)
    i’ve tried that. When i use ‘fixed header menu’, it shows at the top of the page, above the site-titel / site-description / social tabs

    I would like it to be above the header, on the left side.
    I’ve tried to achieve that by adding a negative margin but then all the menu links are shown on eachother, so not readable or usable…
    What could i add in css after that negative margin so that all the menulinks apear besides eachother ?

    #27205
    Sakin
    Keymaster

    @Melody: That’s not a problem. You can use it as per you need.

    3. Not again if you want to move your header image below the menu, this option is there in theme option panel of pro version. But for free one, you need to build child theme and then create functions.php file in your child theme and change position with action hook.
    So your child theme functions.php will be like below:

    <?php
    // Removing the Default Action Hook
    function unhook_catchevolution_functions() {
    	remove_action( 'catchevolution_after_headercontent', 'catchevolution_featured_header', 10 ); 
    }
    add_action( 'init', 'unhook_catchevolution_functions' );
    
    add_action( 'catchevolution_after_header', 'catchevolution_featured_header', 20 );

    And then you need to create style.css to as below:

    /*
    Theme Name: Catch Evolution Child Theme
    Theme URI: http://catchthemes.com/themes/catch-evolution
    Author: Catch Themes Team
    Author URI: http://catchthemes.com
    Description: Catch Evolution Child is a beautifully sleek creation of Catch Themes. It exudes a clean and super sharp look. It comes with a whole set of interesting, rich features and flexible theme options. Built on HTML5, CSS3, it has a responsive design which lets the content automatically adapt to the screen's size on different devices. Catch Evolution looks striking in a bigger screen. The layout is wider, bigger and luxuriously spacious. This theme is easily customizable with an advanced theme options panel. It supports popular plugins such as Jetpack, WordPress SEO by Yoast, WP-PageNavi, Contact Form 7, WooCommerce and many more. It is also translation ready and should you need support with this theme, please go to http://catchthemes.com/support/
    Version: 1.0
    Template: catch-evolution
    Text Domain: catchevolution
    
    This theme, like WordPress, is licensed under the GPL.
    Use it to make something cool, have fun, and share what you've learned with others.
    */
    
    
    /* =Import Catch Everest CSS
    -------------------------------------------------------------- */
    
    @import url("../catch-evolution/style.css");
    
    
    /* =Child Theme Custom CSS
    -------------------------------------------------------------- */
    #header-image {
        overflow: hidden;
        width: 100%;
    }
    #header-image img {
        display: block;
        max-width: 100%;
    }
    #27290
    Melody
    Participant

    Hello Sakin

    Thank you again for your answer with explanation.
    The menu is now there where i wanted it 😉

    Have a nice evening, greetings.

    #28120
    Melody
    Participant

    Hello Sakin

    I’ve tried to remove my header image…. (http://melodymusic.nl)
    but in doing so, my menubar disapears also…

    Can you please informe me how to proceed, so that the heade-image is no longer visible but my menu stays visible/working?

    Thank you!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘slider to header / entrymeta’ is closed to new replies.