Forum Replies Created

Viewing 20 posts - 7,261 through 7,280 (of 14,505 total)
  • Author
    Posts
  • in reply to: Custom Font #34371
    Sakin
    Keymaster

    @LaurenReneL: Let me know the font that you are trying to add in and if that is a google font then we will sure add in next version update. Also you don’t need to disable that plugin. You can use that plugin font and ignore our font family options. It’s all your options.

    in reply to: Remove line around pages and widgets #34370
    Sakin
    Keymaster

    Hi Maeve,

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

    .hentry, .widget, .no-results, #author-info, #disqus_thread, #content .error404 {
        border-color: #ddd;
    }

    If you want to remove then the css will be as below:

    .hentry, .widget, .no-results, #author-info, #disqus_thread, #content .error404 {
        border: none;
    }

    Regards,
    Sakin

    in reply to: Featured Slider #34368
    Sakin
    Keymaster

    @shamwow: Which slider type you are using it. If you are using Featured Image Slider, then you can add in link in the “Link” box. See this screenshot of Image Slider Options http://www.pinterest.com/pin/548594798329509357/ where you have option to add in Image URL, Link URL, Target, Title and Content as you need it.

    I am not so sure what you are talking about. If you are talking different then please explain in reference with your site URL.

    in reply to: Posting via email #34365
    Sakin
    Keymaster

    Hi Jeff,

    Yes JetPack post by email will not work on Localhost. So, you need to make your site live as well as configure your settings. See the details at http://jetpack.me/support/post-by-email/ and then if you have any problem with this plugin then you need to post in Jetpack plugin support forum at http://wordpress.org/support/plugin/jetpack

    Regards,
    Sakin

    in reply to: Modify colour scheme #34364
    Sakin
    Keymaster

    Hello David,

    You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    /* For Menu Hover and Active Background Color */
    #branding ul.menu li:hover > a,
    #branding ul.menu a:focus,
    #branding .menu .current-menu-item > a, 
    #branding .menu .current-menu-ancestor > a, 
    #branding .menu .current_page_item > a, 
    #branding .menu .current_page_ancestor > a {
    	background: #408A8B; /* Show a solid color for older browsers */
    	background: -moz-linear-gradient(#036566, #408A8B);
    	background: -o-linear-gradient(#036566, #408A8B);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#036566), to(#408A8B)); /* Older webkit syntax */
    	background: -webkit-linear-gradient(#036566, #408A8B);
    	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#036566', endColorstr='#408A8B'); /* for IE */
    }
    /* Remove Border left in Menu */
    #branding ul.menu li {
        border-left: none
    }

    Regards,
    Sakin

    in reply to: problem with the upgrade to version 0,3 #34363
    Sakin
    Keymaster

    Hello Alain,

    I just check in Adventurous 0.3 Menus Locations and it is showing two locations at “Appearance => Menus => Manage Locations”
    1. Header Right Menu
    — This will show your custom menu in header right section
    2. Header Secondary Menu
    — This will show your custom menu above your slider.

    Further, if you don’t want Header Right section then you can disable it from “Appearance => Theme Options => Header Options” and check in “Disable Header Right Section”.

    It’s really strange why you are not seeing header right section. For this I need to check in your server. So, I will send you personal email.

    Regards,
    Sakin

    in reply to: Responsive header image #34361
    Sakin
    Keymaster

    @baanderson: It’s because your logo fits in the width so it doesn’t resize it. If you want to change then you can change it manually. Then try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    /* For Screen Max Width: 960px */
    @media screen and (max-width: 960px) {	
        #site-logo {
            width: 18%;
        }
        #site-details {
            float: right;
            width: 80%;
        }
    }
    in reply to: Facebook widget showing images of people #34306
    Sakin
    Keymaster

    @Steve: Yes, if you have build child theme and edited header.php file in your child theme then it’s fine. All Good. Thanks 🙂

    in reply to: Menu Text Colors #34298
    Sakin
    Keymaster

    @littleblue03: Please post in Proper Support Forum. This is Catch Everest support forum, for Catch Evolution add it in this forum http://catchthemes.com/support-forum/forum/catch-evolution-free-theme/. Also when I check in your site, you already have change the menu background to green color.

    in reply to: Responsive header image #34297
    Sakin
    Keymaster

    @baanderson: Sorry I don’t understand what you mean.

    Sakin
    Keymaster

    @devnet: I see that you have added the post ID 2762, title “Manjaro Linux – My Current Distribution” in your Featured Post Slider. So, I guess you have check on “Exclude Slider post from Home page posts”. Can you go to “Appearance => Theme Options => Featured Post Slider => Add Slider Options” and check your settings.

    in reply to: Facebook widget showing images of people #34295
    Sakin
    Keymaster

    @Steve: Please don’t edit any core theme files. You are not supposed to edit any files inside catch-evolution-pro theme directory. As these files will be reverted back to original when you update the theme. For SDK code in header.php, you can add it in “Appearance => Theme Options => Webmaster Tools => Header Codes” box.

    in reply to: Posting via email #34289
    Sakin
    Keymaster

    @Jeff: For this, you can install “Jetpack” plugin and activate “Post by Email” module and configure it.

    in reply to: Reduce white space/padding #34288
    Sakin
    Keymaster

    @Todd:
    1. The request a quote graphic in the header right sidebar widget. But it’s not lined up with the logo. I’d like them to be balanced vertically.
    — For this you can remove the margin top by adding the following css in “Appearance => Theme Options => Custom CSS” box.
    #header-right .widget { margin-top: 0; }

    If this is not enough then you can adjust the padding top.
    .header-sidebar { padding-top: 50px; }

    2. I’d like to further reduce the white space above and below the logo and quote graphic a little more.
    — For the space above logo, you can adjust the padding top
    #site-logo { padding-top: 50px; }

    3. reduce the white space above the line “An Independent Energy…” just a bit
    — You can adjust the padding top in the following css.
    .home #main { padding-top: 50px; }

    4. very slightly reduce the spacing in the headline area and the button size.
    — You can adjust the padding top and below as per your need.

    #homepage-message {
        padding-bottom: 30px;
        padding-top: 30px;
    }
    in reply to: Problem H1 tag on the home page! #34285
    Sakin
    Keymaster

    @philippe: You are using Catch Box theme build in HTML5 and CSS3. So, in HTML5 each article can have 1 header code and each header code can have one h1 tag. So, this is not a problem. See this http://catchthemes.com/support-forum/topic/featured-content-h1-tages-to-many/

    in reply to: How to add text after "All Rights Reserved."? #34223
    Sakin
    Keymaster

    Hello Yuccacane,

    For this you need to upgrade to Catch Kathmandu Pro theme where you will get “Footer Editor” options in your Theme Options panel. For more details about additional features in Pro version, read the theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    Regards,
    Sakin

    in reply to: tweaking the sliding header #34222
    Sakin
    Keymaster

    @jim tobin: Simple Catch Free theme only have option to use Featured Post Slider, which is there to highlight your post and it takes the post title, excerpt content and featured image from the post IDs. So, it will link to post.

    The featured that you are asking can be fulfilled by “Featured Image Slider” where you can upload independent image, title, content and links all optional. For this, you need to upgrade to Pro version. There are other nice additional features, find out at http://catchthemes.com/theme-instructions/simple-catch-pro

    Or you may use redirect plugin to redirect your post URL to homepage. So, it will not show that post.

    in reply to: Remove comments on pages #34221
    Sakin
    Keymaster

    @maevamena: It’s easier in Pr version where you will get option to disable comment on pages from “Appearance => Theme Options => Comment Options”. See more details at http://catchthemes.com/themes/catch-evolution-pro/

    But if you want to do this in free version. Then you need to edit the pages where you want to disable the comment. Then un-check “Allow Comment” in discussion box. See this screenshot at http://www.pinterest.com/pin/548594798329843253/

    in reply to: Facebook widget showing images of people #34220
    Sakin
    Keymaster

    @Steve: There is two option to do this.
    1. Through Plugin: You can install “Jetpack” plugin and then active “Extra Sidebar Widgets” module then you will get “Facebook Like Box (Jetpack)” widget and add it in your sidebar from “Appearance => Widgets”
    2. Through Code: You can get the code from https://developers.facebook.com/docs/plugins/like-box-for-pages , fill in the detail and click on get the code and then add that code in your sidebar from “Appearance => Widgets” using “1. Catch Evolution Adspace Widget”

    in reply to: Spacing around logo in header #34217
    Sakin
    Keymaster

    Hi Maeve,

    You can change the padding as per you need and then add the following css in “Appearance => Theme Options => Custom CSS” box.

    #header-content { padding-top: 40px; padding-bottom: 40px; }

    Regards,
    Sakin

Viewing 20 posts - 7,261 through 7,280 (of 14,505 total)