Forum Replies Created

Viewing 20 posts - 5,961 through 5,980 (of 14,497 total)
  • Author
    Posts
  • in reply to: Place categories widget on page with no sidebar #46977
    Sakin
    Keymaster

    @hoeing: For this, search for plugins like Widgetize Pages at http://wordpress.org/plugins

    in reply to: Scrolling problem with secondary menu and Safari on Ipad #46976
    Sakin
    Keymaster

    @alk: About the secondary menu disappears covered by the header zone, I am not being able to check in details as you have replaced adventurous-custom.min.js file from your plugin W3 Total Cache. So, you need to check that.

    Then about the secondary menu overflow, we can fix the size and then add in scroll if you want. So, can you try it adding the following css in “Appearance => Theme Options => Custom CSS” box.

    #header-right .widget ul.menu ul, 
    .fixed-header #header-right .widget ul.menu ul {
        max-height: 300px;
        overflow-y: scroll;
    }
    in reply to: Catch Everest function.php for child theme #46970
    Sakin
    Keymaster

    @TBM:
    1. For social icons, you can just copy the function catcheverest_social_networks() from catcheverest-functions.php file. Then you will see the block of code with ////Youtube, you need to move the whole block position.

    2. For reach focus width, you can add the following css your child theme style.css file.

    #header-right #s:focus {
        width: 121px;
    }
    in reply to: featured content image border #46969
    Sakin
    Keymaster

    @boosted179: Ok that’s nice.

    in reply to: Catch Everest function.php for child theme #46961
    Sakin
    Keymaster

    @TBM: For child theme you can refer to this article at http://catchthemes.com/blog/create-child-theme-wordpress/ . Can you explain me with your site URL, what changes are you looking form. As some changes just need CSS and other you might need to do custom functions.

    in reply to: Pages' background and text color #46960
    Sakin
    Keymaster

    @fabger: Actually detail color picker option is there in Pro version. But for the free version, you need to do it manually using custom css. You can change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    /* Page Background & Text Color */
    #content article {
        background-color: #fff;
        color: #444;
    }
    /* Page Title Color */
    .entry-title, .entry-title a {
        color: #222;
    }
    /* Header Background Color */
    #header-content {
        background-color: #fff;
    }
    in reply to: Number of posts in Category? #46959
    Sakin
    Keymaster

    @oly: Yes sometimes plugins are annoying. Thanks for the update.

    in reply to: Reduce padding between main menu and slider? #46948
    Sakin
    Keymaster

    @Naomi: The menu that you are using in “Primary Menu” which is supposed to be in the header right section. But since it is too long it pushed it down. So, if you want full with menu, then change that menu location from Primary Menu to Secondary Menu from “Appearance => Menus => Manage Locations”.

    Then you can disable your header right section from “Appearance => Theme Options => Header Options” and then click on “Disable Header Right Sidebar” and save changes. Then in “Appearance => Theme Options => Responsive Design” make sure you have checked in “Enable Secondary Menu in Mobile Devices”.

    in reply to: Upgrade to 3.2 #46945
    Sakin
    Keymaster

    @Adam:
    1. I don’t know what is the level of customization that you have done. If you have customize the theme just using theme options panel, then all your edits will be safe. But if you have edit/added any files inside ‘catch-box-pro’ theme directory, then this will revert back to original when you update the theme.

    So, we recommend to make the edit only from our Theme Options panel and other settings and not to edit any core theme files inside ‘catch-box-pro’ theme directory. And if you need to change any core theme files or functions then you need to build child theme and edit it.

    2. There is one easy option to update the theme. Just activate our plugin Catch Updater. You can download and read the instructions from http://catchthemes.com/wp-plugins/catch-updater/

    But if you want to use the FTP then you need to replace all the files and folders in ‘catch-box-pro’ theme directory.

    in reply to: featured content image border #46943
    Sakin
    Keymaster

    @boosted179: It’s difficult to check it when your site is not live. Also it will be better if you could send me your site screenshot not just image screenshot. I don’t know where this image came from.

    Ok can you try the following css:

    #featured-post img, #main-slider img {
        box-shadow: none;
    }
    in reply to: Stop text from centering within a table cell #46933
    Sakin
    Keymaster

    @jkbart: You table code has issue. Also this type of static table is not supported by responsive theme and it will break. So, for this type of columns wither you can use Responsive table plugin and add it or use responsive columns plugin. Try to find the best fit for your need. I suggest responsive columns plugin should work best.

    in reply to: Number of posts in Category? #46932
    Sakin
    Keymaster

    @oly: It should come as it is. Did you check in those posts are draft or private.

    in reply to: Social links Setting shows nothing #46931
    Sakin
    Keymaster

    @mahroch: I also use Mozilla most of the time in my mac and it’s working fine. Maybe you can some addons that is blocking jquery tabs. Check that.

    in reply to: blog sidebar #46930
    Sakin
    Keymaster

    @Bryan: WooHoo you are awesome… Cheers 🙂

    in reply to: Responsive Menu Displaying Last Item #46928
    Sakin
    Keymaster

    Hello Jesse,

    I just check in your site and it is displaying menu in mobile devices. Then only problem I see is the color options that you have selected from “Appearance => Theme Options => Color Options => Menu Color Options”. Change “Sub-Menu Text Color” as your menu background and text is all blue and cannot view it.

    Regards,
    Sakin

    in reply to: Change size of post titles on blog page #46926
    Sakin
    Keymaster

    @Klaas: Catch Everest default theme is sans-serif and when using inherit, it will load the default font.

    Changing font is nice and cool in Pro version as you will get option to use all Web Safe Fonts and popular Google fonts from “Appearance => Theme Options => Font Family Options”

    The Arial font is web safe font. So, to change the title fonts you can add in the following css in “Appearance => Theme Options => Custom CSS” box.

    .entry-header .entry-title {
        font-family: Arial, sans-serif;
    }

    For the sidebar widget link color, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    .widget-area .widget a {
        color: #404040;
    }
    in reply to: Changing Slider Size #46921
    Sakin
    Keymaster

    @RadMod: If you upload the image size small then width 1280px then it will display the background color of slider. You can add the following css in “Appearance => Theme Options => Custom CSS” box to make the background color transparent.

    #main-slider {
        background-color: transparent;
    }
    in reply to: featured content image border #46920
    Sakin
    Keymaster

    @boosted179: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    .featured-image img, .entry-content img {
        box-shadow: none;
    }
    in reply to: Entry title – remove rollover/colour change/link #46919
    Sakin
    Keymaster

    @oly : You can add in the following css in “Appearance => Theme Options => Custom CSS” box, which will change the hover color to #222 which is same as no-hover.
    .entry-header .entry-title a:hover { color: #222; }

    in reply to: Google Fonts with Catch Box Pro #46918
    Sakin
    Keymaster

    @Kathleen: Yes there is per-defined popular Google fonts in Pro version which you can change from “Appearance => Theme Options => Font Family Options”. Also you can add google font by adding in font plugins.

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