Forum Replies Created

Viewing 20 posts - 9,841 through 9,860 (of 14,497 total)
  • Author
    Posts
  • in reply to: Post excerpts #16886
    Sakin
    Keymaster

    @NeilP: Check your setting at “Appearance => Theme Options => Layout Options => Content Layout”. For excerpt layout, you need to check in “Excerpt/Blog Display”.

    in reply to: "Leave A Commet" Problem #16884
    Sakin
    Keymaster

    @Melih: You shouldn’t edit any core theme files like this. You can contribute Turkish translation of Simple Catch Theme and then we will add it in new version update.

    For that you can just download the poedit software from http://poedit.net/ and then take the file simplecatch.pot in the theme languages directory and generate tr.mo and tr.po files. You can also refer to other language translation for your reference.

    in reply to: Box social widget icons #16883
    Sakin
    Keymaster

    @Joaozinho: If you want to remove from Footer then you can go to “Appearance => Theme Options => Social Links” and check on “Disable Social Links in Footer”.

    To show the color all the time for Facebook and Twitter, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .social-profile ul li.facebook a {
    	background-position: 0 -44px;
    }
    .social-profile ul li.twitter a {
    	background-position: -44px -44px;
    }
    Sakin
    Keymaster

    @Dudley: I check in your site and see that you have added Social Icon widget in “Header Top Sidebar”. Please remove it from there and add it in “Header Right Sidebar” and then it will work fine.

    in reply to: Change header height #16869
    Sakin
    Keymaster

    @Richard: You can upload the header image of any size. Default is just a recommended size. You can just upload the image from “Appearance => Header” and upload the image, then you will get crop header image option. Just crop it as per you need and publish it. See the screenshot http://www.pinterest.com/pin/548594798330545954/

    in reply to: Fav Icon Not showing up #16867
    Sakin
    Keymaster

    @chlegaux: Internet Explorer accepts only .ico extension image. So, check in your favicon. It shouldn’t be jpeg or png. You can use Favicon generators which you can find easily by searching in google.

    in reply to: Header #16864
    Sakin
    Keymaster

    @jessgranata: Please see my above message to tleonce. You are also doing same mistake. Please don’t get confused with Custom Header Image and Logo Image. You can also check our the WordPress Default theme Twenty Ten, it also uses the same concept of custom header and featured image.

    in reply to: Header #16863
    Sakin
    Keymaster

    @tleonce: You are using “Custom Header” from “Appearance => Header”. This is not for logo and this is actually for featured images. So, once you have custom header, this will work as the default images for all posts and pages. But if you have featured images on those posts and pages. It will be replaced with the Featured Image of that particular post.

    For example in your site http://leoncegardenproject.com/. You have custom header image as http://leoncegardenproject.com/wp-content/uploads/2013/10/header041.jpg and then in the post http://leoncegardenproject.com/2013/11/03/day-30-green-bean-flowers/, you haven’t added any featured image. That is why it is showing default header image. But in the post http://leoncegardenproject.com/2013/11/04/day-31-growing-with-the-sun/, you have added featured image. That is why your default header image is being replaced by the featured image of that post. You can just remove the featured image of that post and then it will load the default header image.

    That is why if you are thing of adding static Logo, then custom header is a wrong place. You can add logo from “Appearance => Theme Options => Header Options”. There you have to first upload the image in “Logo url” and then make sure you uncheck “Disable Header Logo”

    in reply to: Photos not displaying on mobile #16857
    Sakin
    Keymaster

    @adminleah: I have just send you an email.

    in reply to: Logo Left of Site Title #16856
    Sakin
    Keymaster

    @Heinrich: Ok can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #site-logo, #hgroup {
        display: inline;
        float: left;
    }
    @media screen and (max-width: 767px) {
    #site-logo, #hgroup {
        display: block;
    	float: none;
    }
    }
    Sakin
    Keymaster

    @Dudley: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* Remove Slider Text */
    #slider-wrap .featured-text {
        display: none;
    }
    /* Move Social Icon */
    @media screen and (min-width: 768px) {
    #sidebar-header-right {
        padding-top: 55px;
    }
    }
    in reply to: Slider Issue #16846
    Sakin
    Keymaster

    @dsoltes: Looks like it’s conflicting with plugin. You can try disabling plugin one by one and test it. I suspect async-social-sharing plugin.

    If you want to hide that content section in your slider, then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide it.
    #main-slider .entry-content { display: none; }

    in reply to: Can I change my FB & Twitter icons? #16845
    Sakin
    Keymaster

    @Jimo1966: Sorry it’s fixed social icons. Can you try our new plugin Catch Web Tools http://catchthemes.com/wp-plugins/catch-web-tools/ which has Social Icons that you can make it larger.

    in reply to: Logo Left of Site Title #16843
    Sakin
    Keymaster

    @Heinrich: Can you send me your site URL and explain your requirement then I can suggest you want you can do about it.

    in reply to: Can't get rid of right margin on page main content. #16841
    Sakin
    Keymaster

    @Ayisids: Sorry for the late reply and great work you fixed it really fast. Great work. 🙂

    in reply to: footer widget #16840
    Sakin
    Keymaster

    @a7madsafadi: Yes sure. You can use free version as per your need and upgrade anytime you feel like upgrading.

    in reply to: Change menu colors? #16839
    Sakin
    Keymaster

    @yoshimi233: For easy option, you can just upgrade to Catch Everest Pro version where you have color options to change the colors of menus. But for free theme you need to adjust css.

    For menus, you can change the color code as per your need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* For menu bar color – general */
    #header-menu {
        background-color: #3A3D41; 
    }
    /* For menu bar color – hover color */
    #header-menu ul.menu li:hover > a,
    #header-menu ul.menu a:focus {
    	background-color: #2d2d2d;
    }
    /* For menu bar color – child menu color */
    #header-menu ul.menu ul a {
    	background-color: #3a3d41;
    }
    /* For menu bar color – current page */
    #header-menu .menu .current-menu-item > a,
    #header-menu .menu .current-menu-ancestor > a,
    #header-menu .menu .current_page_item > a,
    #header-menu .menu .current_page_ancestor > a {
    	background-color: #000;
    }

    To reduce space around the header image, you have to adjust the padding as per your need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #hgroup-wrap {
        padding: 0 50px 50px 50px;
    }
    #site-logo {
        padding-top: 50px;
    }
    in reply to: Photos not displaying on mobile #16838
    Sakin
    Keymaster

    @adminleah: Upgrading to pro version is simple as Pro version if just feature addition to free version. If you need our help in upgrading then we can do that for you as well. You can check out theme instruction for pro version http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Search button overlaps site title #16837
    Sakin
    Keymaster

    @owen: When I check in your site URL in small screen it looks fine. So, I cannot debug it. But you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to make your search bar fixed width.
    #branding #s:focus { width: 95px; }

    Sakin
    Keymaster

    @Dudley: Please send me your site URL and also let me know what do you mean by little. Can you be more specific.

Viewing 20 posts - 9,841 through 9,860 (of 14,497 total)