Forum Replies Created

Viewing 20 posts - 2,441 through 2,460 (of 14,498 total)
  • Author
    Posts
  • in reply to: update 4.2 catch box #65867
    Sakin
    Keymaster

    @marcodimi: I see that you haven’t activated “Catch Updater Plugin”. Please activate that plugin then only you will be able to update the theme from “Appearance => Themes => Add New => Uploads”. This plugin will backup your existing theme and also update the theme to latest version when you upload it.

    If you don’t want to install this plugin, then first you need to activate any other theme and then delete this theme and install it again. This is also same processes.

    in reply to: copyright message position #65855
    Sakin
    Keymaster

    @Kenta: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .site-info { text-align: right; }

    in reply to: "continue"-arrow" doesn´t work #65854
    Sakin
    Keymaster

    @Cordula: Sorry I don’t have any recommendation. You can search at http://wordpress.org/plugins/

    in reply to: Menu color #65852
    Sakin
    Keymaster

    @Daniel: Please check your email and reply me there.

    in reply to: update 4.2 catch box #65835
    Sakin
    Keymaster

    @marcodimi: Make your you have activated Catch Updater plugin so that you can do easy update from next time. Just go to http://catchthemes.com/wp-plugins/catch-updater/ and download catch-updater.0.3.zip file and then activate plugin from “Appearance => Plugins => Add New => Uploads”.

    Then you will be able to update your theme always from zip file using “Appearance => Themes => Add New => Uploads”.

    in reply to: Menu color #65833
    Sakin
    Keymaster

    @Daniel: Hum, I need to check you site and server. So, I will email you.

    in reply to: No sidebar on static startpage #65832
    Sakin
    Keymaster

    @ktuth: Looks like there is HTML code problem in the text that you have added in page. Looks like there is missing closing element. So, can you try making different page with just text as your static homepage.

    in reply to: Catch everst navigation bar colour change #65830
    Sakin
    Keymaster

    @joshim: Detail Color Options with color picker is there in Pro version. You can find more information about additional features in Pro version at http://catchthemes.com/theme-instructions/catch-everest-pro/

    For main menu bar background color, 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:
    #header-menu { background-color: #3a3d41; }

    in reply to: white space below the slider and 3 headers #65828
    Sakin
    Keymaster

    @flagshop: For Catch Kathmandu free theme, please post in Catch Kathmandu Support forum at http://catchthemes.com/support-forum/forum/catch-kathmandu-public/ with your site URL so that I can check in your site and suggest you css.

    in reply to: Can't Modify Footer #65781
    Sakin
    Keymaster

    @Kuo Wei: Sorry there was issue in the theme. So, we have updated the theme and have attribute you at http://catchthemes.com/changelogs/simple-catch-pro-theme/

    Now, you can download the latest version from your account at http://catchthemes.com/my-account and for update instructions, you can check out http://catchthemes.com/theme-instructions/simple-catch-pro/#updating

    in reply to: Menu – is menu justifcation possible? #65700
    Sakin
    Keymaster

    @Neil: Thanks for your appreciation 🙂

    in reply to: Where is my logo ? #65670
    Sakin
    Keymaster

    @Tuttle: You are checking in “Header Image”. For logo, you can go to “Appearance => Theme Options => Header Options”, upload image in “Logo url” and then uncheck ”
    Disable Logo”

    in reply to: Spacing? #65667
    Sakin
    Keymaster

    @lmf33: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS” box:

    .entry-content { padding-top: 0; }
    .entry-content p:last-child { margin-bottom: 0; }
    in reply to: No sidebar on static startpage #65666
    Sakin
    Keymaster

    @ktuth: Please post in your site URL and then I can check in. For layout, first priority will be give to the layout option in page meta box called “FullFrame Options” which you will see below that page text editor. So, edit that page and check in layout. Then only the preference will be given to layout in “Appearance => Customize => Theme Options => Layout Options”

    in reply to: Issue with Amazon aStore display on PC #65665
    Sakin
    Keymaster

    @steve: To show 3×3 ads, you need to increase the size of the sidebar. So, add the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 1023px) {
        .wrapper { width: 1018px; }
        #primary { width: 60.64%; }
        #secondary { width: 36.28%; }
    }
    in reply to: Add '/' between menu items #65664
    Sakin
    Keymaster

    @Fede1583: It’s difficult to support site without online URL. So, try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #fixed-header-top ul li:after {
        color: #fff;
        content: "/";
    }
    #fixed-header-top ul li:last-child:after {
        content: none;
    }
    #fixed-header-top ul li a {
        display: inline-block;
    }
    in reply to: Stocks ticker between header image and articles #65663
    Sakin
    Keymaster

    @Carlo:
    1. For margin, go to “Appearance => Theme Options => Header Options” and then change “Header Bottom Margin” as per your need.
    2. There is no option to change that fixed header image with video or slider. But you can add additional slider just below the menu. For that, you need to go to “Appearance => Theme Options => Featured Slider => Slider Options”, then select “Featured Image Slider” in “Select Slider Type” and “Full Width Slider” in “Slider Layout”. Then you can upload image from “Appearance => Theme Options => Featured Slider => Featured Image Slider Options”. For more about image slider, check this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/

    Sakin
    Keymaster

    @Brendon: Thanks

    in reply to: Menu (color) Menu (on iphone) And one column width #65629
    Sakin
    Keymaster

    @vichewordpress: one more thing you need to change, you need to replace
    wp_page_menu( array( 'menu_class' => 'page-menu-wrap' ) );

    with the following:
    wp_page_menu( array( 'menu_class' => 'menu catchresponsive-nav-menu' ) );

    in reply to: Stocks ticker between header image and articles #65628
    Sakin
    Keymaster

    @Carlo:
    1. Sorry please replace previous css:

    #secondary, #sidebar-header-right {
        display: block;
        width: 100%;
    }

    with the following css:

    #sidebar-header-right {
        display: block;
        width: 100%;
    }

    2. Then to center it, replace previous css:

    .sidebar-top .widget {
        width: 100%;
    }

    with the following:

    .sidebar-top .widget {
        text-align: center;
        width: 100%;
    }
Viewing 20 posts - 2,441 through 2,460 (of 14,498 total)