Forum Replies Created

Viewing 20 posts - 4,921 through 4,940 (of 14,509 total)
  • Author
    Posts
  • in reply to: Background problem #51957
    Sakin
    Keymaster

    looking at your site. I recommend width 1440px and height 900px. But it’s all you decision. Just make sure your image size is not that large. It must be less then 200kb is better.

    in reply to: Video embedding #51955
    Sakin
    Keymaster

    @Will: If you want to control the it’s size then you need to wrap with div like this
    <div style="width: 300px;">your youtube code</div>

    This is responsive theme. So, your view will be adjusted as per your content sizes. Either you need to define width like above from your content editor text mode or you need to disable responsive design from “Appearance => Theme Options => Responsive Design”

    in reply to: Blog Subscribe Box not appearing #51954
    Sakin
    Keymaster

    @Jan Deelstra: If visibility setting,
    1. when you say “Hide” is page is Blog, then it will hide only in your blog page and will show in all other pages.
    2. when you say “Show” if page is blog or post, it will show in your blog page and your article (post) page and will not show in other sections such as other pages, category and all.

    in reply to: Featured Image #51953
    Sakin
    Keymaster

    @yidamweb: It depends on your setting at “Appearance => Theme Options => Header Featured Image Options => Enable Featured Header Image”.

    in reply to: manu name #51952
    Sakin
    Keymaster

    @Simon: Looks like there is localization of script missing. So, cannot be done with language file. You need to add the following code in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Footer” box:

    <script type="text/javascript">
    jQuery(window).load(function() {
    	jQuery("#access").html(function(i,t){
    	    return t.replace('Menu','Hauptmenü')
    	});
    	jQuery("#access-secondary").html(function(i,t){
    	    return t.replace('Secondary Menu','Servicemenü')
    	});
    	jQuery("#access-footer").html(function(i,t){
    	    return t.replace('Footer Menu','Infomenü')
    	});
    });
    </script>
    in reply to: remove META below posts/pages #51949
    Sakin
    Keymaster

    @kyle: It should work. Can you post in your site URL so that I can check on your custom css and site for issue.

    in reply to: Missing Webmaster Tools #51948
    Sakin
    Keymaster

    @Andreas: Catch Base Pro theme doesn’t have webmaster tools. You can install Catch Web Tools plugin and then add from there. Read more about Catch Web Tools at http://catchthemes.com/wp-plugins/catch-web-tools/

    Sakin
    Keymaster

    @Michael: You can edit that page and then in you will see Catch Kathmandu Option box below your content editor. From there you can select “Sidebar Layout” as “No sidebar, Full Width” and save changes.

    in reply to: No download link for latest version of CatchBox Pro #51936
    Sakin
    Keymaster

    @Robertf: Thanks and yes it’s 4.0. Check it here http://catchthemes.com/themes/catch-box-pro/

    in reply to: update #51934
    Sakin
    Keymaster

    @Will: Please check theme instructions at http://catchthemes.com/theme-instructions/catch-evolution-pro/ . You can download the update from your account at http://catchthemes.com/my-account/ and then you can use Catch Updater plugin http://catchthemes.com/wp-plugins/catch-updater/ to add that theme from “Appearance => Themes => Add New”. Detail instructions is there in Catch Updater plugin page.

    in reply to: Tiltle #51933
    Sakin
    Keymaster

    @valezaii: Font family option is there only in Simple Catch Pro version. So, either you need to upgrade to pro version or install plugins for that.

    in reply to: Removing header border #51932
    Sakin
    Keymaster

    @daniel12: Yes, you can remove the border image in your header by adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #header .top-bg { display: none; }

    You can remove add your own custom menu from “Appearance => Menus” and then assign that menu location as Primary menu from “Appearance => Menus => Manage Locations” For more check out custom menus at http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    If you are thinking of remove the border in the menu as well. Then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #header #mainmenu, #header #mainmenu ul li { border: none; }

    To change the background and text color of hover/active menu then you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #header #mainmenu ul li a:hover, 
    #header #mainmenu ul li.current-menu-item a,
    #header #mainmenu ul li.current-menu-parent a, 
    #header #mainmenu ul li.current_page_item a, 
    #header #mainmenu ul li.current_page_ancestor a, 
    #header #mainmenu ul li:hover > a {
        background-color: #444;
        color: #fff;
    }

    Note: Looks like you are editing/adding file inside core theme folder ‘simple-catch’. You shouldn’t edit or add any files inside ‘simple-catch’ folder, as all these edits will be reverted back to original when you update the theme. So, please use child theme to edit/add codes. If you have simple editing then I recommend you to use “Appearance => Theme Options” settings.

    in reply to: "Fix mobile usability issues" alert from Google #51931
    Sakin
    Keymaster

    @Consciousness: Yes please update to latest version 2.4.1 and also send me your site URL so that I can check what is the issue there.

    in reply to: Creating child theme from customised parent #51898
    Sakin
    Keymaster

    @Intergame: Yes you are right. Child theme is needed when you want to edit the theme in code level. Like customizing functions.php, page.php file and so on.

    in reply to: Video embedding #51897
    Sakin
    Keymaster

    @Will: Can you post in your site URL and let me know what are you trying to do it.

    in reply to: Background problem #51895
    Sakin
    Keymaster

    @Will: Background image in loading fine in iPhone6. But it’s really slow loading that is why first it shows #333333 background color and then only your background image. Why you are adding such as large image for your background. You background image size in 4.3MB which is very bad for website landing. You can reduce the height and width of the image.

    in reply to: Site Formatting on Tablet and in Windows #51894
    Sakin
    Keymaster

    @Kim:
    1. Since you have uppercase long menu. You have issue like that. You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (max-width: 1280px) {
        #header-menu ul.menu a, 
        #footer-menu ul.menu a {
            padding: 0 10px;
        }
    }
    @media screen and (max-width: 1100px) {
        #header-menu ul.menu a, 
        #footer-menu ul.menu a {
            padding: 0 8px;
        }
    }
    @media screen and (max-width: 1000px) {	
        #header-menu ul.menu a, 
        #footer-menu ul.menu a {
            font-size: 13px;
        }
    }

    2. That is responsive design. When the container cannot fit in 3 columns, then it will become 2 columns and your left sidebar will be below.

    in reply to: Enlever la date et le nom sur les articles #51893
    Sakin
    Keymaster

    @omrani: Sorry I cannot check in without site being live.

    in reply to: Creating child theme from customised parent #51886
    Sakin
    Keymaster

    @Intergame: All changes you have made from Appearance except from Editor is good. So, don’t worry about it. You can just update.

    All the changes from “Appearance => Editor” or in adventurous folder is not safe. As when you update the theme, all the files inside adventurous folder will be reverted back to original.

    in reply to: Migrating from Catch Box Pro to Catch Everest Pro #51882
    Sakin
    Keymaster

    @luismarioochoa: Yes, you can do that.

    Here is details explanation.
    1. Featured Post Slider: If you choose featured post slider then you will be able to link to post.
    2. Featured Page Slider: If you choose featured page slider then you will be able to link to page.
    3. Featured Image Slider: You can upload image and add link to page or post or any URL you want.

Viewing 20 posts - 4,921 through 4,940 (of 14,509 total)