Forum Replies Created

Viewing 20 posts - 5,421 through 5,440 (of 14,494 total)
  • Author
    Posts
  • in reply to: as removing the text… #49592
    Sakin
    Keymaster

    @alexmo: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #form-allowed-tags { display: none; }

    in reply to: Sticky 2nd Nav Menu #49591
    Sakin
    Keymaster

    @John U: Sorry I gave to wrong code. I forgot to remove the actions. So the code will be as below:

    // Removing the Default Action Hook
    function unhook_adventurous_functions() {
    	//remove default secondary menu
    	remove_action( 'adventurous_before_main', 'adventurous_secondary_menu', 10 );
    }
    add_action( 'init', 'unhook_adventurous_functions' );
    
    // Add Secondary menu after hgroup wrpa
    add_action( 'adventurous_after_hgroup_wrap', 'adventurous_secondary_menu', 5 );
    in reply to: Problem with translation of first featured slide #49590
    Sakin
    Keymaster

    @Pieter: We are still waiting for reply from WPML team as they need to check this. I think due to holiday session, it’s getting slow.

    in reply to: Translation problem #49557
    Sakin
    Keymaster

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

    .rtl #slider-nav { right: 85%; }
    @media screen and (max-width: 960px) {	
        #pg-w549ada1fef013-0 .panel-grid-cell {
            float: none;
            text-align: center;
            width: 100%;
        }
    }
    Sakin
    Keymaster

    @paul: Post in your site URL and desire color code. Also let me know from which devices you want to remove slider.

    in reply to: Header Customize #49555
    Sakin
    Keymaster

    @egnalc: Sorry this is not possible with basic CSS in this theme. You need to hire customizer to work on it.

    in reply to: Catch Everest Pro Sliders not sliding #49541
    Sakin
    Keymaster

    @thib: Thanks for the info. Great you found our the issue.

    in reply to: Best Events plugin #49532
    Sakin
    Keymaster

    @Michael: Sorry I haven’t use it.

    in reply to: Download ver 2.3 #49527
    Sakin
    Keymaster

    @egnalc: You zip file will be in your account at http://catchthemes.com/my-account/ and if you don’t find it then you must have some issue with your account. For that you need to contact our sales and account section at http://catchthemes.com/contact-us/

    in reply to: Sticky 2nd Nav Menu #49526
    Sakin
    Keymaster

    @John U: To move the secondary menu position, first you need to build child theme, For child theme ready this http://catchthemes.com/blog/create-child-theme-wordpress/ and then you need to add the following code in your child theme functions.php file:

    // Removing the Default Action Hook
    function unhook_adventurous_functions() {
    	//remove default secondary menu
    	add_action( 'adventurous_before_main', 'adventurous_secondary_menu', 10 );
    }
    add_action( 'init', 'unhook_adventurous_functions' );
    
    // Add Secondary menu after hgroup wrpa
    add_action( 'adventurous_after_hgroup_wrap', 'adventurous_secondary_menu', 5 );
    in reply to: Best Events plugin #49525
    Sakin
    Keymaster

    @Michael: Sorry we don’t have any recommendation for Events plugin. As there are lot of variety of events plugin and it all depends in your required features.

    in reply to: Translation problem #49509
    Sakin
    Keymaster

    @adamsh:
    For slider content, try adding in the following css:
    .rtl #main-slider .entry-container { right: 50px; }

    You homepage headline button in on left only.

    in reply to: Blog page set up #49508
    Sakin
    Keymaster

    @lorencowka: Sorry this is not a theme related issue. Also I am not sure how do I explain about root directory. You can login your your website hosting control panel or FTP and your root directory will be there.

    in reply to: Line display for blog posts #49507
    Sakin
    Keymaster

    @churchtidbits: Yes, Full Content Display will not display the featured image as this option in meant to display whatever you have added in post before more tag. So, you can add image in your post at the beginning of the content.

    in reply to: Remove page titles from body of page #49506
    Sakin
    Keymaster

    Hi Melissa,

    Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #content .entry-header { display: none; }

    Regards,
    Sakin

    in reply to: Pagination Color Options have disappeared #49505
    Sakin
    Keymaster

    @Riccardo: Thanks for your appreciation 🙂

    in reply to: iPad > Featured Image > HP Widget #49504
    Sakin
    Keymaster

    @Dawn: Then sizes of image are clearly mention in our theme instructions page at http://catchthemes.com/theme-instructions/catch-mustang/ . So, you need to add image size of width 340px.

    in reply to: Changing fonts only for the site title? #49502
    Sakin
    Keymaster

    @Riccardo: The best option to change the font only for your site title then go to “Appearance => Theme Options => Font Family Options” and then change the site title fonts. If you don’t see your font in the list and it’s Google fonts then we can add in future version update for your use. But if this font in not available as Google Font then you need to build child theme and do the font embed.

    For Font Face Embedding, I recommend you to generate font from http://www.fontsquirrel.com/tools/webfont-generator and download your font files. You can add those font files in your child theme. For example you added your font files are WebFont.eot, WebFont.woff, WebFont.ttf and WebFont.svg in your child theme directory. Then you need to add the css in your child theme style.css as following:

    @font-face { 
    	font-family: 'MyWebFont'; 
    	src: 	url('WebFont.eot'); 
    	src:	url('WebFont.eot?iefix') format('eot'), 
    			url('WebFont.woff') format('woff'), 
    			url('WebFont.ttf') format('truetype'),
    			url('WebFont.svg#webfont') format('svg'); 
    } 
    
    #site-title {
    	font-family: 'MyWebFont', Arial, sans-serif;
    }
    in reply to: Pagination Color Options have disappeared #49500
    Sakin
    Keymaster

    @Riccardo: As per my knowledge pagination color option will appear in Theme Options panel in Catch Kathmandu Pro theme only when you have WP-PageNavi plugin activated.

    in reply to: How to Expand the Length of the Menu and Middle Bar #49499
    Sakin
    Keymaster

    @mgunes: For Full width, please try our theme like Catch Flames or Catch Evolution or Adventurous. Catch Everest theme ins not build to make the full width menu like you have shown in sample site. So, if you want to make Catch Everest like that then it requires lot of CSS changes and you need to build child theme.

Viewing 20 posts - 5,421 through 5,440 (of 14,494 total)