Forum Replies Created

Viewing 20 posts - 2,601 through 2,620 (of 14,501 total)
  • Author
    Posts
  • in reply to: ERROR msg in theme #64758
    Sakin
    Keymaster

    @knudkp: Please update theme to latest version. We updates all our Premium/Pro theme yesterday to make it WordPress 4.3 compatible.

    in reply to: Excerpt length #64419
    Sakin
    Keymaster

    @margarita: It should be like that. Have you customize the code directly in parent Catch Responsive theme. How was your front page content added? Can you check the settings after you activate the child theme. As when you activate the child it, it treats your theme as new theme and then you need to set few settings again. Like assign custom menu, widgets and all.

    For plugin, you need to search at http://wordpress.org/plugins/

    in reply to: Primary Menu not showing any items in mobile view #64389
    Sakin
    Keymaster

    @AirOnSkin: I see that you have customize the site and remove code from footer.php. Please revert back the codes in footer.php file and then you will be able to get mobile menu back.

    in reply to: Feature Request for editor-style.css #64388
    Sakin
    Keymaster

    @Robertf: ok we will remove that in next version update. Thanks for reporting.

    in reply to: Header right sidebar #64387
    Sakin
    Keymaster

    @Phil: First go to “Appearance => Widgets” and add in Text widget is “Header Right Sidebar” and then add in your telephone number and email.

    To reduce, send me your site URL and let me know by how much you want to reduce it.

    in reply to: Cuts in text #64385
    Sakin
    Keymaster

    @Bandit: Yes, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .site-content article {
      -webkit-hyphens: manual;
      -moz-hyphens: manual;
      hyphens: manual;
    }
    in reply to: Upgrading to pro from public #64384
    Sakin
    Keymaster

    @Everywear: For responsive design, you can check our demo page at http://catchthemes.com/demo/simplecatch-pro/.

    Simple Catch Pro uses different code base but your content are in WordPress and it’s not in Theme. So, all your content will be safe. But you might need to change custom css.

    in reply to: Promotion headline colors not working #64383
    Sakin
    Keymaster

    @Patrick: Yes, there is bug and we are fixing it in next version update 3.2 which is schedule to be release by this week. If you want to change it now, then send me the color code that you want to change to and your site URL. Then I will send you custom css.

    in reply to: Can't set homepage as static page #64382
    Sakin
    Keymaster

    @Jamie: Looks like you have page called home and then you have set another page as static front. So, you have pages with home. So, best option will be to create custom menu from “Appearance => Menus” and then add pages as per your need. To add homepage see this screenshot https://www.pinterest.com/pin/548594798331207092/. To learn more about custom menu, refer to http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    in reply to: Number showing up on page #64379
    Sakin
    Keymaster

    @Myrens: Not sure how you got that number from. Looks like there is some code that you have added in theme core. So, first try updating theme to latest version. This will revert back all the original theme files. If this doesn’t get removed after update then check you plugins.

    in reply to: Missing field : author and last update #64376
    Sakin
    Keymaster

    @VERGNES: It should be fine. I check in our demo site at https://developers.google.com/structured-data/testing-tool/ and it looks fine.

    in reply to: Change font, reduce width and set image for header #64375
    Sakin
    Keymaster

    @KhalidM:
    1. To change font to Arial, you need to add following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    body, button, input, select, textarea {
        font-family: arial;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: arial;
    }

    2. You can adjust the width in the following css as per your need and add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (min-width: 991px) {	
        /* Site Main Wrapper */
        .site { max-width: 80%; }
        /* Content Area */
        #main { width: 70%; }
        /* Sidebar Area */
        .sidebar-primary { width: 30%; }
    }

    3. You can go to “Appearance => Customize => Site Title & Tagline”. Then uncheck “Display Header Text” to hide site title and tagline and uncheck “Check to disable logo” to show logo and then upload your own logo by clicking on change image. To center logo, you need to add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #site-branding {
        width: 100%;
        text-align: center;
    }
    #site-logo {
        display: block;
        float: none;
        margin: 0 auto;
    }
    in reply to: Widget Problem on Catch Responsive Pro #64374
    Sakin
    Keymaster

    @Harry: Yes, when you have problem with login and logout, it’s usually cache issue. For that, you need to go to your cache plugin settings and clear your cache.

    in reply to: Unable to select select sub menu items #64373
    Sakin
    Keymaster

    @Laurie: Sorry I don’t understand it. As when I check in your site, I can click on submenu.

    in reply to: Excerpt length #64372
    Sakin
    Keymaster

    @margarita: For custom excerpt, you can build child theme and add the following code in your child theme functions.php file and then you will get custom excerpt box in your page where you can add in custom text. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/.

    add_action( 'init', 'catchresponsive_add_excerpts_box_pages' );
    function catchresponsive_add_excerpts_box_pages() {
         add_post_type_support( 'page', 'excerpt' );
    }

    If you find difficulty to add in this code then you can search for plugin to add custom excerpt box in pages.

    in reply to: Can't see picture in posts #64369
    Sakin
    Keymaster

    @joel: Looks like you haven’t add in Featured Image in your posts. So, edit those post and then assign your image as featured image. For featured image, check out screenshot at https://www.pinterest.com/pin/548594798329948788/ or screencast at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/

    in reply to: Menu Covers up Image #64367
    Sakin
    Keymaster

    @gernot: Can you let me know what doesn’t work in iphone 5s. Please post in your issue with your site URL.

    in reply to: logo and change post title indents #64366
    Sakin
    Keymaster

    @Kim:
    1. Sorry I don’t understand it. I see same as Homepage and single post title have same padding. Only that single post have post navigation at top.

    2. For this, you need to use Logo. So, just add it as logo and let me know it. Then I will send you custom css.

    in reply to: Spacing btw social icons widget and main menu #64345
    Sakin
    Keymaster

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

    #header-right { padding-top: 0; }

    in reply to: Layout without side bar on tablet #64252
    Sakin
    Keymaster

    @Christine: It’s because we change the size from custom css. Now you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 980px) {	
    	#masthead #site-logo img {
    		max-height: 120px;
    	}
    	#masthead.fixed-header #site-logo img {
    		max-height: 28px;
    	}
    }
Viewing 20 posts - 2,601 through 2,620 (of 14,501 total)