Forum Replies Created

Viewing 20 posts - 3,081 through 3,100 (of 14,509 total)
  • Author
    Posts
  • in reply to: MailChimp for WordPress Lite on Catch Box #60870
    Sakin
    Keymaster

    @Harry: For this type of issue you need to contact the plugin author support forum. This is not theme issue. Sorry, we don’t handle these. SO, contact plugin auhtor and ask for help and if he said anything that we need to adjust then we can do that for you. Here is link for support of “MailChimp for WordPress” plugin https://wordpress.org/support/plugin/mailchimp-for-wp

    in reply to: Catch Kathmandu Pro bad in IE8 #60869
    Sakin
    Keymaster

    @effess: Thanks 🙂

    in reply to: Menu Height & Home Page Removal #60868
    Sakin
    Keymaster

    @Hair Bear: For menu height, you can adjust the passing-bottom in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    #header-right .widget .menu a {
        padding-bottom: 24px;
    }

    But, second I couldn’t check it as when I view your site, it’s all “Oops! That page can’t be found.”

    in reply to: Overriding theme functions #60867
    Sakin
    Keymaster

    @Stephen: No problem.

    in reply to: How to make classic view default on mobile device #60865
    Sakin
    Keymaster

    @Cesar R: That classic view is from our theme. But I don’t how you go that other mobile version. Either that mobile view is from the plugin are you using or your system have added in mobile. Which is coming from http://mobile.chess-instructor.com/. So, contact your system who did this setup.

    You can check our demo that, we only have normal mobile version http://catchthemes.com/demo/catchbox-pro

    in reply to: menu bugginess #60864
    Sakin
    Keymaster

    @Kim: There is no limit as per as I know it. If this is design issue then I can definitely solve it. Can you share a screenshot of what are you trying to do it.

    in reply to: Add fonts #60861
    Sakin
    Keymaster

    @toni: Yes, it changed all your page title as page title is H1 and yes it will work in h1 and h3 as well. I see it’s being change. So, I don’t get it what you mean.

    in reply to: theme changes aren\'t saving #60856
    Sakin
    Keymaster

    @mtsweb: did you try it from different browser as sometime there will be browser issue. I am bit confused as your said it’s working on other computer. Also can you try with another administrator password.

    So, try it and if this doesn’t work then I need to check in your server. Let me know it and then I will email you for access.

    in reply to: Change text size #60855
    Sakin
    Keymaster

    @Vitaliy: You can change the font size as per your need and then add it in “Appearance => Theme Options => Custom CSS: box:

    @media screen and (min-width: 1025px) {
        #site-title {
            font-size: 36px;
        }
        #site-description {
            font-size: 14px;
        }
    }
    in reply to: social Icon #60854
    Sakin
    Keymaster

    @Daniel: You can change the color code in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .site .widget-area .widget_catchresponsive_social_icons a:hover {
    	background-color: #3b5998;
    	border-color: #3b5998;	
    }
    in reply to: Add fonts #60853
    Sakin
    Keymaster

    @toni: Can you let me know which H1 are you talking about. As When I check in your site, the H1 have been changed.

    in reply to: Programmatically modify featured content? #60852
    Sakin
    Keymaster

    @Stephen: Cool that you sorted it. Thanks 🙂

    in reply to: Widget panel (backend) #60851
    Sakin
    Keymaster

    @Michaela: Yes, this is strange. We haven’t seen this issue. Ok I will send you email and you can let me know there.

    in reply to: Change site width without affecting responsive version #60833
    Sakin
    Keymaster


    @jamepompey
    : Here goes the css that you can use for bigger screen size. Thanks for your appreciation 🙂

    /* For screen size above 1000px */
    @media screen and (min-width: 1001px) {
        .site {
            width: 80%;
        }
        #primary {
            width: 75%;
        }
        #secondary {
            width: 22%;
        }
    }
    in reply to: responsive picture #60832
    Sakin
    Keymaster

    @iagu: Please check in your custom css. It’s not theme issue. It’s your additional css that is causing issue. Mainly because of the following css. Please find it and remove it.

    img {
        max-width: 1600px !important;
    }
    in reply to: two vidgets at header right sidebar in one line #60830
    Sakin
    Keymaster

    @Vitaliy: Please add in widgets in your header right sidebar and post in your site URL here. Then I will check in your site and suggest you the custom css.

    in reply to: Programmatically modify featured content? #60829
    Sakin
    Keymaster

    @Stephen: I have already given you the instruction for advance customization. I will explain it little more. First, you need to build child theme. Then you can copy the functions which you want to edit to your child theme functions.php file.
    1. Function catchresponsive_featured_content_display() is the final function which display the featured content. It checks which featured content type you have selected.
    2. Function catchresponsive_post_content() is the function which handles the featured post content. So, if you have selected Featured Post slider then you might want to check this. For page it will be catchresponsive_page_content(), category will be catchresponsive_category_content() and image will be catchresponsive_image_content()

    in reply to: Add fonts #60828
    Sakin
    Keymaster

    @toni: You have issue in your child theme css. Are you sure that CSS is given by FontSquirrel. There is issue with url it cannot be 'fonts'atrament_regular-webfont.eot' and should be 'fonts/atrament_regular-webfont.eot'. So, you need to replace that all. For example, replace the following css:

    @font-face {
        font-family: 'atramentregular';
        src: url('fonts'atrament_regular-webfont.eot');
        src: url('fonts'atrament_regular-webfont.eot?#iefix') format('embedded-opentype'),
             url('fonts'atrament_regular-webfont.woff2') format('woff2'),
             url('fonts'atrament_regular-webfont.woff') format('woff'),
             url('fonts'atrament_regular-webfont.ttf') format('truetype'),
             url('fonts'atrament_regular-webfont.svg#atramentregular') format('svg');
        font-weight: normal;
        font-style: normal;
    }

    with this

    @font-face {
        font-family: 'atramentregular';
        src: url('fonts/atrament_regular-webfont.eot');
        src: url('fonts/atrament_regular-webfont.eot?#iefix') format('embedded-opentype'),
             url('fonts/atrament_regular-webfont.woff2') format('woff2'),
             url('fonts/atrament_regular-webfont.woff') format('woff'),
             url('fonts/atrament_regular-webfont.ttf') format('truetype'),
             url('fonts/atrament_regular-webfont.svg#atramentregular') format('svg');
        font-weight: normal;
        font-style: normal;
    }
    in reply to: Add fonts #60821
    Sakin
    Keymaster

    @toni: Can you send me your site URL and let me know what are you trying to do it. Then I can check in.

    in reply to: Featured Gallery Widget on Homepage #60787
    Sakin
    Keymaster

    @Linda: I have just replied your support ticket

Viewing 20 posts - 3,081 through 3,100 (of 14,509 total)