Forum Replies Created

Viewing 20 posts - 8,821 through 8,840 (of 14,497 total)
  • Author
    Posts
  • in reply to: Wrong language displaying #20085
    Sakin
    Keymaster

    @heidi: I just check in your site and it is displaying fine with English text. Maybe something wrong with your browser. Close your browser, refresh and check in.

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

    @mikegogno: First of all, you are not supposed to hide the Theme: Catch Everest in your site footer. This is only means for providing free theme and free support.

    If you want to remove/edit footer copyright content, then you can do that by upgrading to Pro version where you have Footer Editor in your theme options panel.

    About the menu color, I see hat you have already change it for
    – menu bar: red (#B62025) – white page title
    – hover: green (#0E6735) – white page title

    So, now for
    – current page: white – green (#0E6735) page title, you can add the following CSS in “Appearance => Theme Option s=> Custom CSS” box.

    #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: #FFFFFF;
        color: #0E6735;
    }
    in reply to: problem with the sidebars #20072
    Sakin
    Keymaster

    @Sebastian: Yes, your main sidebar is your default sidebar. If you haven’t added any widget in other sidebar, then it will load your main sidebar. But if you have added widget in archive sidebar then your archive page will load archive sidebar and so on.

    in reply to: header right sidebar widget #20071
    Sakin
    Keymaster

    @suchi: You can disable responsive design from “Appearance = Theme Options => Response Design”. Then it will show it same as in large screen.

    in reply to: Change fontsize in footer area one #20070
    Sakin
    Keymaster

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

    /* For footer Widget Title */
    #supplementary .widget-title { font-size: 20px; }
    /* For footer Widget Content */
    #supplementary .widget { font-size: 14px; }

    Note: When you increase the font size you need to change to all responsive design smart devices.

    @media screen and (max-width: 1060px) {
    /* Add here css for maximum screen size of 1060px */
    }
    @media screen and (max-width: 960px) {	
    /* Add here css for maximum screen size of 960px */
    }
    @media screen and (max-width: 767px) { 
    /* Add here css for maximum screen size of 767px */
    }
    @media screen and (max-width: 480px) { 
    /* Add here css for maximum screen size of 480px */
    }
    @media screen and (max-width: 320px) {
    /* Add here css for maximum screen size of 320px */
    }
    in reply to: Slider, Most popular posts #20069
    Sakin
    Keymaster

    @mscserginho: There is no option to add the most popular posts automatically to the slider and recent post in the homepage featured content. For this you need to code new function in your child theme. If you know the technical then you can add it otherwise you can hire a customizer. You can ask for quote at http://catchthemes.com/hire-customizer/

    You can add your recent post in your homepage by going to “Appearance => Theme Options => Homepage Settings => Homepage/Frontpage Settings” and check on “Enable Latest Posts”.

    You will not loose your setting after purchasing pro theme. If you need help in upgrading to pro theme then we have that service for free.

    in reply to: Hyperlink #20067
    Sakin
    Keymaster

    @Karin: I don’t get it what you mean. Are you trying to add hyperlink to the another side. Then you need to hyperlink code. Check out this HTML instruction at http://www.w3schools.com/html/html_links.asp and WordPress Link instruction at http://en.support.wordpress.com/links/

    in reply to: In my backup files, where are located my custom CSS? #20066
    Sakin
    Keymaster

    @Halconio: You custom css in Theme Options panel will not be in your wp-content file but it will be saved in your database.

    in reply to: Slider Stopped Functioning #20065
    Sakin
    Keymaster

    @Susie: Can you post in your site URL? Did you change anything in your site recently. Then remove that. Most of the time the slider might conflict with the plugins. So, try deactivate the plugin one by one and check in.

    in reply to: problem with the sidebars #20046
    Sakin
    Keymaster

    @Sebastian: Sorry sidebar widgets. You can use “Jetpack” plugin and active “Widget Visibility” module. This module will add option in your widgets to show only on specific page. So, you can just use the Main Sidebar and then assign each widget for different pages.

    When you activate the “Jeetpack” plugin, make sure you have deactivated “Mobile Theme” module as this module conflict with Responsive Design.

    in reply to: Soliloguy slider top white space #20042
    Sakin
    Keymaster

    @chris: There is extra paragraph tag just above your slider. So, either you need to remove that <p></p> code or add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .post-1294 .entry-content p { margin-bottom: 0; }

    in reply to: Soliloguy slider top white space #20040
    Sakin
    Keymaster

    @chris: Can you post in your site URL?

    in reply to: problem with the sidebars #20039
    Sakin
    Keymaster

    @Sebastian: the default sidebar is the Main Sidebar. You can choose optional sidebar 1 to 3 only for pages and post. But you cannot use that for Archive or Blog pages. For archive, you can either use optional archive sidebar or it will load default main sidebar.

    in reply to: optimize the space between sidebar widgets #20038
    Sakin
    Keymaster

    @Sebastian: You can change the margin as per your wish. Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* General */
    #secondary .widget { margin-bottom: 40px; }
    /* For screen size above 1190px */
    @media screen and (min-width: 1190px) {
    #secondary .widget { margin-bottom: 50px; }
    }
    /* For screen size below 1160px */
    @media screen and (max-width: 1060px) {
    #secondary .widget { margin-bottom: 30px; }
    }
    /* For screen size below 960px */
    @media screen and (max-width: 960px) {	
    #secondary .widget { margin-bottom: 20px; }
    }
    in reply to: font size keeps appearing bigger than it should #20037
    Sakin
    Keymaster

    @oly: Sorry, I don’t get it what you mean. I don’t see any issue in your site.

    in reply to: Changing the size of the Page and Post Titles #20036
    Sakin
    Keymaster

    @Diane: You shouldn’t change the the core theme files such as style.css, functions.php, index.php and so on. As these changes will be reverted back to original file when you update or upgrade the theme. So, to make the changes in CSS you can either do that from “Appearance => Theme Options => Custom CSS” or by building child theme and adding css in child theme style.css file.

    You can play with the following CSS and change the color and size as per your need. Add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .entry-title { color: #444; font-size: 34px; }
    .entry-title a { color: #444; }
    in reply to: Homepage headlines #20035
    Sakin
    Keymaster

    @Karin: You can create your own set of custom menu as per your need from “Appearance => Menus. Can you create the menu, you need to assign the location from “Appearance => Menus => Manage Locations”. Read more about menus at http://catchthemes.com/blog/custom-menus-wordpress-themes/

    For left alignment, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header-menu ul.menu { text-align: left; }

    in reply to: Posts not linked with a post page (Setting, Reading) #20020
    Sakin
    Keymaster

    @kaisneuron: I just updated the theme and it is working fine.

    in reply to: Wrong language displaying #20019
    Sakin
    Keymaster

    @heidi: Maybe the font that you have use or maybe some issue when you copy and past the content. Can you post your site URL?

    in reply to: how to resize image of the news post #20018
    Sakin
    Keymaster

    @skywalker1984: Thanks and really appreciate your way to express frustration. So, positive. Thumbs UP 🙂

    Really sorry for your frustration. If you look at our theme instruction page http://catchthemes.com/theme-instructions/catch-box/. We have set of predefined image sizes that is Width: 644px and Height: 320px. So, if you have image bigger then this or exactly this then it will crop in exact size. But if you have smaller image then it will display the original image that you have uploaded it.

    But I see that the width of your images are smaller then 644px. So, it’s showing random sizes.

Viewing 20 posts - 8,821 through 8,840 (of 14,497 total)