Forum Replies Created

Viewing 20 posts - 5,461 through 5,480 (of 14,504 total)
  • Author
    Posts
  • 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 ๐Ÿ™‚

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

    @mgunes: The browser title is from your site title and page title. So, please check that and also you can modify the title to custom one by installing WordPress SEO by Yoast Plugin.

    To change the menu to lowercase, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #header-menu ul.menu a { text-transform: lowercase; }

    in reply to: Pagination of Long Posts #49410
    Sakin
    Keymaster

    @Jason: Can you send me the URL where you have added nextpage shortcode. As the pagination should be there before post footer meta. See this demo http://catchthemes.com/demo/simplecatch-pro/aciform/layout-test/

    in reply to: Eliminating White Space on Side and Under Graphic #49409
    Sakin
    Keymaster

    @talkleft: Cheers ๐Ÿ™‚

    in reply to: Eliminating White Space on Side and Under Graphic #49352
    Sakin
    Keymaster

    @talkleft: I see that you have added your logo as Header Image. That is nice but it’s better you remove that image from Header Image and then upload it as Logo from “Appearance => Customize => Site Title & Tagline”. Then add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #masthead, 
    #masthead .wrapper, 
    #site-branding { 
        padding: 0; 
    }

    But if you want to keep your image as header image as it is now and remove the spaces, then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #masthead { display: none; }

    in reply to: Reduce spacing between logo and menu etc. #49343
    Sakin
    Keymaster

    @billcb: You can add the following css in “Appearance => Theme Options => Custom CSS” box to make your header nice.

    #header .logo-wrap {
        margin-top: 30px;
        width: 694px;
    }
    #site-details {
        padding-top: 25px;
    }
    #header .social-search {
        margin-top: 55px;
        width: 244px;
    }
    #header .social-search form.searchform input {
        width: 140px;
    }
    #site-title {
        font-size: 36px;
    }
    #site-description {
        font-size: 13px;
    }
    #header #mainmenu {
        margin-top: 30px;
    }
    in reply to: Remove borders #49342
    Sakin
    Keymaster

    @dnieuwenhuis: You can add the following css in “Appearance => Theme Options => Custom CSS” box to remove border:

    .hentry, .widget, .no-results, #author-info, #content .error404 {
        background-color: #fff;
        border: medium none;
        position: relative;
    }
    in reply to: Eliminating White Space on Side and Under Graphic #49341
    Sakin
    Keymaster

    @talkleft:
    1. About the spaces below you header. I see that you have add blank custom menu in Secondary menu. So, go to “Appearance => Menus => Manage Location” and remove your blank menu from “Secondary Menu”. It should be left as โ€” Select a Menu โ€”

    2. Thanks it’s solved

    3. You can change Favicon from “Appearance => Customize => Theme Options => Icon Options”

    For more, you can check out theme instructions page at http://catchthemes.com/theme-instructions/catch-base-pro/

    Thanks for using Catch Base Pro and Happy Holidays… Cheers ๐Ÿ™‚

    in reply to: double logo #49306
    Sakin
    Keymaster

    @adamsh: To disable primary menu. I have already given you the instruction above. Either you can disable the Header Right Sidebar section which has primary menu or just add widget to header right sidebar with will replace the primary menu.

    in reply to: double logo #49303
    Sakin
    Keymaster

    @adamsh: Ok if you want to disable header right section. Then go to “Appearance => Theme Options => Header Options” then check option “Disable Header Right Sidebar” and save changes.

    in reply to: Bug with Post? #49301
    Sakin
    Keymaster

    @jjs: Cheers ๐Ÿ™‚

    in reply to: eliminate pages from menu #49300
    Sakin
    Keymaster

    @Roberto: It’s really simple, Just go to “Appearance => Menus” from your WordPress Dashboard. Create menu and assign pages/posts/links as per your need to your custom menu. Then you need to assign that menu location to Primary Menu from “Appearance => Menus => Edit Locations”. So, in this way you will only have the pages that you want to show in menu. You have full control of your menu items.

    See this screencast for more details http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    in reply to: double logo #49299
    Sakin
    Keymaster

    @adamsh: I don’t know what you are talking about. As I only see secondary menu in your site woodyaalon.com/en/ . I think you have already disable Primary menu. Then I don’t understand what you mean by diable it complitly.

    in reply to: Bullet Color, Social Icons Color & Pop-out #49298
    Sakin
    Keymaster

    If you want black arrow for white screen then you can add the following:

    #main ul {
        list-style: outside url("http://1stattack.com/wp-content/themes/simple-catch-pro/images/ul-bg.png") disc;
    }
Viewing 20 posts - 5,461 through 5,480 (of 14,504 total)