Forum Replies Created

Viewing 20 posts - 4,961 through 4,980 (of 14,497 total)
  • Author
    Posts
  • in reply to: Header image only on homepage #51754
    Sakin
    Keymaster

    @eparnau: Sorry that option is only there in Catch Evolution Pro version. In Pro version you have option to select Enable Featured Header Image from “Appearance => Theme Options => Header Featured Image Options”

    For free version, there is no option. So, you have to build child theme and edit the function catchevolution_featured_header()

    in reply to: Enlever la date et le nom sur les articles #51753
    Sakin
    Keymaster

    @omrani: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    footer.entry-meta { display: none; }

    in reply to: Background color of Home button in primary menu #51737
    Sakin
    Keymaster

    @Gunter: That is active page color. You can change that by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box. Change the color as per your need.

    #hgroup-wrap ul.menu li:hover > a, 
    #hgroup-wrap ul.menu a:focus, 
    #hgroup-wrap .menu .current-menu-item > a,
    #hgroup-wrap .menu .current-menu-ancestor > a, 
    #hgroup-wrap .menu .current_page_item > a, 
    #hgroup-wrap .menu .current_page_ancestor > a {
        background-color: #fff;
        color: #5c89c7;
    }
    in reply to: remove padding between social icons #51736
    Sakin
    Keymaster

    @@shaun.smudger.smith: If you like Catch Everest Theme then please support it by providing your good review and rating at https://wordpress.org/support/view/theme-reviews/catch-everest/

    in reply to: remove padding between social icons #51735
    Sakin
    Keymaster

    @shaun.smudger.smith: Moving in the menu is not possible. But looking at your site, I have suggestion. You have large logo image. So, I suggest to add social above the image at bottom right. Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #hgroup-wrap {
        position: relative;
    }
    #header-right {
        bottom: 5px;
        position: absolute;
        right: 10px;
    }
    in reply to: Email share link not saving #51734
    Sakin
    Keymaster

    Hello Ronel,

    I just tested in my server and it’s working fine. In Email social link, you just need to add in your email address. The script will check in the email address that you have added in is valid or not. If it is not valid then it will remove it. So, just Enter email address without any mailto

    Regards,
    Sakin

    in reply to: Remove image borders from widgets. #51733
    Sakin
    Keymaster

    @sahilkothari25: Sorry we don’t support blogspot. We only support WordPress theme developed by us. This is Catch Box Pro theme support thread.

    in reply to: How to make different Featured Sliders on every page? #51729
    Sakin
    Keymaster

    @Troy: Sorry there is no option to show different slider in different page. There is only one slider that you can show in homepage or entire site. This features is not common in themes. So, you might want to check in for plugins https://wordpress.org/plugins/search.php?q=slider

    in reply to: Adding Link Separators on Secondary Menu #51724
    Sakin
    Keymaster

    @bigoslesli: You can replace your css with the following css:

    /* Secondary Menu Separator */
    #secondary-menu ul.menu a {
        background: url("http://www.eggermanphotography.com/wp/wp-content/uploads/2015/02/separator2.gif") no-repeat scroll left center transparent;
    }
    #secondary-menu ul.menu li:first-child a {
        background-image: none;
    }
    /* Mobile Menu Color Fix */
    #hgroup-wrap .sb-holder,
    #secondary-menu .sb-holder {
        background-color: #7f4000;
    }
    #hgroup-wrap .sb-holder a,
    #secondary-menu .sb-holder a {
        color: #fff;
    }
    #hgroup-wrap .sb-options,
    #secondary-menu .sb-options {
        background-color: #7ea7ca;
    }
    in reply to: Spacing on the content in Posts #51720
    Sakin
    Keymaster

    @Kim: If you are going to write list then you should use Bulleted (Unorder List) or Numbered (Order) list. That’s there in content editor of WordPress. See how it shows in our demo page.
    http://catchthemes.com/demo/catch-flames/2013/01/11/markup-html-tags-and-formatting/

    in reply to: Page-Template Problem #51717
    Sakin
    Keymaster

    @Epheistos: Yes update to 3.4.2 fixes all the layout issue. Yes, sorry for the trouble. Wanted to make it better but this body_class got it all messed up. Yes, we will be more careful.

    in reply to: Add Parallax Scroll to Header #51696
    Sakin
    Keymaster

    @B1ngle: Sorry this is beyond normal free support. For this, you need to consider hiring developer. Sorry, we don’t have Parallax support.

    in reply to: Category only displays first 1-2 posts in Catch Everest (free) #51695
    Sakin
    Keymaster

    @FinnJackson:

    1. Yes, I can see all 10 posts displaying with any loading issue. I tried it from all the browser. So, yes please check in your computer browser and maybe you want to try from different browser.

    2. Yes, if you upgrade to pro version. You will get more then free version. Catch Everest Pro is build in Catch Everest free but with additional features. For additional features list you can check theme instructions page at http://catchthemes.com/theme-instructions/catch-everest-pro/

    3. I think you are looking at your site from small screen. In that case you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .site { overflow: visible; }

    in reply to: Responsive.css not active in child theme #51694
    Sakin
    Keymaster

    @Ronel: Yes you are right 🙂

    in reply to: Responsive.css not active in child theme #51692
    Sakin
    Keymaster

    @Ronel: Best option is to copy the whole css from parent theme responsive.css and then add your custom below. As the code I gave you will remove the parent theme responsive.css and then add your child theme responsive.css

    But if you want to create new responsive.css in your child theme with only few css that you want to edit. Then you don’t need to remove parent theme css. You just need to add your child theme responsive.css by adding in the following code in your child theme functions.php file.

    // dding new responsive.css in child theme 
    function adventurous_child_enqueue_scripts() {
        wp_enqueue_style( 'adventurous-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' );
    }
    add_action( 'wp_enqueue_scripts', 'adventurous_child_enqueue_scripts', 11 );
    in reply to: Featured Post in place of Featured Content #51691
    Sakin
    Keymaster

    @emlawag: Sorry no option to add that. You can just add custom content. But not the posts. This features has not been added yet.

    in reply to: remove padding between social icons #51690
    Sakin
    Keymaster

    @shaun.smudger.smith: You can adjust the padding and margin as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #header-right { padding-top: 50px; }
    #header-right .widget.widget_catcheverest_social_widget {
        margin-bottom: 10px;
    }
    in reply to: Header text #51688
    Sakin
    Keymaster

    @teddiebozh: thanks for your appreciation 🙂

    in reply to: Responsive format of buttons #51687
    Sakin
    Keymaster

    @Ronel: From which browser in mobile you are checking in . Are you checking in Safari. Sorry it cannot be done simply with css as it’s default for input type submit in mobile devices.

    but you can remove that for original bottom by adding in the following css:

    input[type=submit] {
      -webkit-appearance: none;
      -webkit-border-radius: 0;
    }
    in reply to: Centring selected Gallery images. #51684
    Sakin
    Keymaster

    @Joseph: Sorry we have no control on this. This is default gallery from WordPress.

    You can add the following css to make it center:

    .attachment .entry-attachment {
        text-align: center;
    }
    .attachment .entry-attachment a {
        display: inline-block;
        margin: 0 auto;
    }

    That number below the gallery is the Caption in theme image. If you don’t want that then edit that image and remove the caption.

    To remove date from attachment, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .attachment .entry-meta { display: none; }

    But to remove the link to full image, you cannot do that from Custom CSS. For this you need to build child theme. Check this http://catchthemes.com/blog/create-child-theme-wordpress/ for child theme. The copy image.php in yoru child theme and edit that link.

Viewing 20 posts - 4,961 through 4,980 (of 14,497 total)