Forum Replies Created

Viewing 20 posts - 5,441 through 5,460 (of 14,497 total)
  • Author
    Posts
  • 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.

    in reply to: Translation problem #49457
    Sakin
    Keymaster

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

    .rtl #homepage-message .left-section {
        text-align: right;
    }
    Sakin
    Keymaster

    This is strange conflict of plugin with our theme. The best way to fix this will be to report this in plugin support forum and if they have any suggestion that we can do to make this work properly then we can add in.

    So, can you send me the specific page where there is video so that I can check in. As when I check in your images in 1stattack.com/category/show-trucks/, it’s opening fine.

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

    @lorencowka: Thanks 🙂

    About your google site verification, there are lot of way to do it. One is the file update. You have uploaded in wrong path. It should be uploaded in your root directory. So you file should be in yvonnestravel.com/googlecee3a421594cb631.html . Also there is another easy way. You can add the “Google Site Verification ID” in “Appearance => Theme Options => Webmaster Tools => Site Verification”

    in reply to: Decrease line-height in hard-returns, in body copy #49453
    Sakin
    Keymaster

    @sbartsch: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    p { margin-bottom: 20px; }

    in reply to: Lower Case and Title Problem #49450
    Sakin
    Keymaster

    @mgunes: There is no Header Right Sidebar Widget area in Catch Everest Free Theme. To add language widget in Header Right Sidebar, you need to upgrade to pro version where you will get option to add widgets in Header Right Sidebar. For more details about Catch Everest Pro, read this theme instructions page at http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Simple Catch 2.7.5 #49426
    Sakin
    Keymaster

    @mhoque0428: Thanks for your appreciation and yes we all are learning new everyday. Life is a learning curve. Cheers 🙂

    in reply to: Getting rid of faint grey box around inserted image #49425
    Sakin
    Keymaster

    @Arcturus: Thanks for your appreciation.

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

    @lorencowka: Then in your custom css box, find the following css:

    #header-menu ul.menu a {
           font-weight: bold;
    }

    And then replace with the following css:

    #header-menu ul.menu a,
    #secondary-menu ul.menu a {
           font-weight: bold;
    }
    in reply to: Translation problem #49423
    Sakin
    Keymaster

    @adamsh: Can you show me your site in Hebrew language and then I can check in. Sorry we are not being to reply to fast due to holiday session and I am out of city.

    in reply to: Background Tiling #49422
    Sakin
    Keymaster

    @Michael: Thanks for your appreciation.

    in reply to: Feature Comparison to Catch Box Pro #49421
    Sakin
    Keymaster

    @talkleft: Thanks and Happy holidays 🙂

    in reply to: Links page title and header pic #49420
    Sakin
    Keymaster

    @Aleao: Oh you are talking about the Logo and Site Tile, it will link to your homepage by default and there is not option to change that. If you want to change that then you need to know about WordPress Child Theme Coding or hire customizer. As for this, first you need to build child theme, read this for child them http://catchthemes.com/blog/create-child-theme-wordpress/

    Then you need to copy the functions catchkathmandu_header_image() from Catch Everest theme custom-header.php file and add it in your child theme functions.php and edit the link as per your need.

    in reply to: Lower right header menu & use posts page as front page #49419
    Sakin
    Keymaster

    @Kim: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #secondary .widget .social-profile {
        text-align: center;
    }
    #secondary .social-profile ul li {
        display: inline-block;
        float: none;
    }
    in reply to: Pagination of Long Posts #49418
    Sakin
    Keymaster

    @Jason: I check in your site and see that that comment is not from our theme. It’s from our plugin with you have installed. I see that you have disable comment in this post. It is from plugin “facebook comments”. Remove that and it will be fine or ask in that plugin support why it adds above.

    in reply to: a few questions #49417
    Sakin
    Keymaster

    @Kim: Sorry this is not possible. I will can check in if you have any issue. Checking all these custom css in not possible.

    in reply to: Change position of the Image Slider #49416
    Sakin
    Keymaster

    @Martijn: That option is not there in option panel. For this you need to do custom coding. This is beyond our free support. So, you need to hire customizer to work on it. I can tell you the process. First, you need to build child theme. You can reach about child then and also download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then in your child theme functions.php file. Then add in the text above and below using function and hook. For example to add text above and below slider, you can add the following code in your the child them functions.php file:

    /**
     * This function to display text above slider
     */
    function catchevolution_text_above_sliders() { ?>
    Add in the Text as per your need here
    <?php
    }
    add_action( 'catchevolution_content', 'catchevolution_text_above_slider', 5 );
    
    /**
     * This function to display text below slider
     */
    function catchevolution_text_below_sliders() { ?>
    Add in the Text as per your need here
    <?php
    }
    add_action( 'catchevolution_content', 'catchevolution_text_below_slider', 15 );
    in reply to: double logo #49414
    Sakin
    Keymaster

    @adamsh: Thanks for your appreciation 🙂

Viewing 20 posts - 5,441 through 5,460 (of 14,497 total)