Forum Replies Created

Viewing 20 posts - 5,381 through 5,400 (of 14,504 total)
  • Author
    Posts
  • in reply to: Featured image in sidebar on page #49846
    Sakin
    Keymaster

    @Bas: Thanks nice and thanks for sharing but be careful as that plugin is outdated and have not been updated over 2 years.

    in reply to: space between the secondary menu and the post title #49845
    Sakin
    Keymaster

    @alexmo: You can reduce the padding-top as per you need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #main { padding-top: 50px; }

    in reply to: Navigation Problem #49844
    Sakin
    Keymaster

    @Raphael: Sorry I don’t get it what you mean. Can you explain in reference with your site URL so that I can check in and suggest you the solution.

    in reply to: change font color and remove box on slider title #49843
    Sakin
    Keymaster

    @andriansah: Sorry we only support theme developed by us that is Catch Themes. You are not using our theme.

    in reply to: Logo won't upload #49842
    Sakin
    Keymaster

    @baj7783: Check this screenshot http://www.pinterest.com/pin/548594798331986216/. Before your click on “Insert Into Post”, make sure “Link URL” is not empty. Sometime, it’s empty. If it’s empty then click on “File URL” and “Full Size”, then you will see your logo image link and then click on “Insert Into Post”.

    in reply to: Social Icons In Footer #49841
    Sakin
    Keymaster

    @j17dascoli: Sorry there is no option to add in social links from Footer Editor. You can add it in different widgets area from “Appearance => Widgets”. Did you try adding in “Footer Area One”.

    But if you really want to add in the social icons in the footer site info area then you need to build child theme. Read this http://catchthemes.com/blog/create-child-theme-wordpress/, you can also download sample child theme from here then you can add the following code in your child theme functions.php file

    // Adding Social Icons in site generator area
    add_action( 'catchkathmandu_site_generator', 'catchkathmandu_social_networks', 5 );
    in reply to: How do I change default Image sizes in Blog listings? #49840
    Sakin
    Keymaster

    @Consciousness: In Catch Evolution theme, then recommended size for Featured Image in post is Width: 754px and Height: 400px. So, all the image uploaded at this size or larger then this size will be automatically crop to this size. In your case, you want smaller image, then just upload the image smaller then height 400px and it will load your original small image that you have uploaded.

    in reply to: Sticky 2nd Nav Menu #49815
    Sakin
    Keymaster

    @John U: Either you need to remove import from your child theme style.css or remove wp_enqueue_style() from your child theme functions.php file. It’s not good to keep it both.

    in reply to: Custom Header Image for Logo #49786
    Sakin
    Keymaster

    @lsdinc: Thanks for your appreciation 🙂

    in reply to: Blog page set up #49785
    Sakin
    Keymaster

    @lorencowka: Again this can be done by installing plugin like “Sociable” or another.

    in reply to: as removing the text… #49784
    Sakin
    Keymaster

    @alexmo: Thanks for sharing. There is correction in Custom CSS for your site. So, replace the custom css:
    #form-allowed-tags { display: none; }

    With the following css:
    #respond .form-allowed-tags { display: none; }

    in reply to: Can't link Featured Post Slider images to certain url #49783
    Sakin
    Keymaster

    @amandamarie0808: I see that you are using Catch Kathmandu Free theme. Which only have option to use “Post Slider or Category Slider”, these two slider are created to highlight your post in the slider. It takes your post title, excerpt and featured image and will link to post.

    To change that to page, you need to Page Slider and to link to any pages/custom URL then you need to use Featured Image Slider. But the option to use Page or Image slider is only there in Catch Kathmandu Pro version. So, your solution will be to upgrade to pro version.

    in reply to: Slider text and scroll arrows appear as white box #49782
    Sakin
    Keymaster

    @Shawn: I don’t see any issue. Which version of IE and Firefox are you using it. Can you upload screenshot in your site or any photo-sharing site and send me the link to screenshot. Then I can check in more.

    in reply to: Primary Menu Not Accesible on Mobile #49781
    Sakin
    Keymaster

    @Jonathan: It’s because you have following css in your custom css box:
    #header-content { display: none; }

    Also I don’t understand why you added in the following css:

    @media screen and (min-width: 961px) {
    }

    Remove both the css and then you will get menu back. Further, if you don’t like header in the desktop version then you then you can add the following css instead.

    #logo-wrap, #sidebar-header-right { display: none; }
    @media screen and (min-width: 981px) {	
    #header-content { padding: 0; }
    }
    in reply to: Changing Colors Menu #49778
    Sakin
    Keymaster

    @Epheistos: For minimal style changes, then you can use Custom CSS box at “Appearance => Theme Options => Custom CSS” box. You need to build child theme only when you need advance customization of styles and functions.

    You can simply change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    //Border Color
    #branding ul.menu li 
        border-color: 1b4266;
    }
    //Menu background and text color
    #branding #access, #branding ul.menu ul a {
        background: none #1b4266;
        color: #fff;
    }
    //Menu Hover background and text color
    #branding ul.menu li:hover > a,
    #branding ul.menu a:focus {
    	background: none #286298; 
    	color: #fff;
    }
    in reply to: main menu #49777
    Sakin
    Keymaster

    @paul: Do you mean that you just want to hide your menu in your homepage and show it in all other pages then you can add in the following css in “Appearance => Theme Options => Custom CSS” box:

    .home #access { display: none; }

    in reply to: Mp3's on my Site Disappeared #49776
    Sakin
    Keymaster

    @Kevin: Sorry I don’t know which shortcode are you using it. Are you using any plugin for MP3s.

    in reply to: Sticky 2nd Nav Menu #49771
    Sakin
    Keymaster

    @John U: Other CSS are automatically added and the parent style.css is imported in style.css of child theme. You will see the following CSS in your child theme style.css

    /* =Import Adventurous Pro CSS
    -------------------------------------------------------------- */
    
    @import url("../adventurous-pro/style.css");

    So, you don’t need to add adventurous-pro_enqueue_scripts_styles() function in your child theme functions.php file. Also in your //remove default secondary menu, you have done add_action and it should be as remove_action. Your child theme functions.php file should be as.

    in reply to: Custom Header Image for Logo #49745
    Sakin
    Keymaster

    @lsdinc: Yes, there are additional options in Pro version as Pro version is advance version of Free one. See more details about additional features and instructions for pro version at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    in reply to: My Main Menu disappears after scrolling down #49744
    Sakin
    Keymaster

    @Daniel: I check in your site and your menu is working fine. Your Black menu is not a static fixed menu to do with your header. It get hidden when you scroll down and will come back when you scroll up.

Viewing 20 posts - 5,381 through 5,400 (of 14,504 total)