Forum Replies Created

Viewing 20 posts - 4,561 through 4,580 (of 14,504 total)
  • Author
    Posts
  • in reply to: zip #53725
    Sakin
    Keymaster

    @Heinrich: We only have zip file in My Account, maybe you have auto-extractor in your browser. Try from different browser or you can right click and click on “Save Link As” and download the zip file. See this screenshot https://www.pinterest.com/pin/548594798333093154/

    in reply to: Homepage Menu Not Syncing With Back End #53724
    Sakin
    Keymaster

    @michellebergmann: To make the slider image 100% with, you can make it stretch by adding in the following css:

    .featured-slider .slides img {
        height: auto;
        width: 100%;
    }
    in reply to: Homepage Menu Not Syncing With Back End #53716
    Sakin
    Keymaster

    @michellebergmann: Ok then the css with be as below:
    #homepage-message p { font-family: "Rye", sans-serif; }

    But if you want “You’ve never experienced anything like this before.” to be normal then add the following extra:
    #homepage-message p span { font-family: sans-serif, Arial; }

    This theme is not designed to make it expand 100%. So, you might want to look for our other themes at http://catchthemes.com/themes/

    But if you want to work that out with this theme, I don’t guarantee good one. You might need to hire developer to make it nice. try the following css for now:

    .site {
        margin: 0 auto;
        width: 100%;
    }
    in reply to: Width of page with "No Sidebar (Content Width)" #53679
    Sakin
    Keymaster

    Hello Kurt,

    The No Sidebar (Content Width) mean there will not be sidebar but it will have content width. So, see the demo at http://catchthemes.com/demo/catch-base/layout-options/no-sidebar-content-width/

    If you want full width then you should choose No Sidebar (Full Width) content layout. See this demo at http://catchthemes.com/demo/catch-base/layout-options/no-sidebar-full-width/

    Yes, you can use CSS as suggested by @widespread

    Regards,
    Sakin

    in reply to: homepage-message – right-section Button #53678
    Sakin
    Keymaster

    Yes, in pro version there is option to check “Target. Open Link in New Window”. So, you can uncheck that option and it will be self.

    But sorry this option is not there in free version. For free version, you need to build child theme and then copy catchkathmandu_homepage_headline() function to your child theme functions.php file, then remove target="_blank" in the following code:
    $catchkathmandu_homepage_headline .= '<div class="right-section"><a href="' . $homepage_headline_url . '" target="_blank">' . $homepage_headline_button . '</a></div><!-- .right-section -->';

    in reply to: problems in catchbase-featured-content.php #53677
    Sakin
    Keymaster

    @widespread: Thanks. We haven’t tested this theme with Polylang and it’s great that it is working fine. Cheers 🙂 Thanks for your detail information. This post will really help other who want to use Polylang plugin in Catch Base theme.

    Thanks a lot 🙂

    in reply to: duplicate image #53676
    Sakin
    Keymaster

    @Claudio: I am telling you is that All Private pages will be visible only to you when you are log in. We will not see it. this is how WordPress Private page/post works. So, we see empty Slider and Featured Content.

    About menu, you can create custom menu from “Appearance => Menus” and then add page, post, category, links as per your need to your custom menu. Then assign your menu to Primary menu location from “Appearance => Menus => Manage Location”. Check this out for custom menus http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    in reply to: Right sidebar width #53675
    Sakin
    Keymaster

    @Melissa: It looks like you have added widget in Homepage Sidebar but have empty in Primary Sidebar.

    in reply to: Questions about advantages of Pro over Free version #53674
    Sakin
    Keymaster

    @nic.riche: This is Simple Catch Pro theme support forum. For Gridalicious Pro theme, please post it in http://catchthemes.com/support-forum/forum/gridalicious-pro-premium/

    The Grid image 1,2 and 3 that you see in the theme is from Demo Featured Grid Content. You can change that to “Featured Image Grid Content or Featured Post Grid Content or Featured Category Grid Content or Featured Page Grid Content. For that go to “Appearance => Customize => Featured Grid Content Options => Featured Grid Content Type”. For more check out theme instructions page at http://catchthemes.com/theme-instructions/gridalicious-pro/#featured-grid-content

    in reply to: Fixate Menue and make a smaler logo #53663
    Sakin
    Keymaster

    @Schelbert: Thanks for your appreciation.

    in reply to: duplicate image #53661
    Sakin
    Keymaster

    @Claudio: There is nothing private coming on when I visited the site. When you page/post is in private mode, it will not display that for normal user. It will only show for logged in users.

    in reply to: Top menu for pages #53636
    Sakin
    Keymaster

    @weberg69: please post in your site URL so that I can see it. There are many menu location. See our demo http://catchthemes.com/demo/catch-evolution/. Did you try adding your menu to sidebar using “Custom Menu” widget.

    in reply to: Keyword and Category Tags #53635
    Sakin
    Keymaster

    @6figurefamily: Thanks for your appreciation. Also, if you like Catch Box theme than support this theme by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-box?rate=5#postform. Thanks.

    in reply to: Navigation Slider Prev and Next #53634
    Sakin
    Keymaster

    @msyarif: Yes you can do in anyway you like. CSS and Custom png both will work. For css, it can be as below. But it all depends on your need.

    #slider-nav { bottom: 50%; right: 0; width: 100%; }
    .slide-previous { position: absolute; left: 5%;  }
    .slide-next { position: absolute; right: 5%;  }
    #slider-nav a { font-size: 40px; }
    #main-slider:hover #slider-nav a, #main-slider #slider-nav a:hover { background: none transparent; color: #fff; }
    in reply to: Featured Slider #53626
    Sakin
    Keymaster

    @Nick: Cool 🙂

    in reply to: Navigation Slider Prev and Next #53625
    Sakin
    Keymaster

    @msyarif: This is from Genericon and that is from custom image. So, it will be different.

    in reply to: DFP Small Business Implementation #53620
    Sakin
    Keymaster

    @Marcus: Thanks 🙂

    in reply to: duplicate image #53614
    Sakin
    Keymaster

    @Claudio: If you upgrade to Pro version, you will get detail color option to change the color of the menu letter. For free theme, you need to change with custom css. So, just change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    /* Menu Text Color */
    .catchbase-nav-menu a  {
    	color: #666;
    }
    /* Menu Hover-Focus Text Color */
    .catchbase-nav-menu li a:hover,
    .catchbase-nav-menu li a:focus {
    	color: #21759b;
    }
    /* Menu active-current Text Color */
    .catchbase-nav-menu .current-menu-item > a, 
    .catchbase-nav-menu .current-menu-ancestor > a, 
    .catchbase-nav-menu .current_page_item > a, 
    .catchbase-nav-menu .current_page_ancestor > a {
        color: #21759b;
    }
    in reply to: Right sidebar width #53613
    Sakin
    Keymaster

    @Melissa: I check in your about us page and your sidebar is working fine. Did you refresh you browser and check in. Sometime, there might be cache. But I see issue with your ads in left sidebar, where you have define fixed Width. It’s not good for responsive design. Do you know that Catch Flames Pro theme has it’s own Advertisement Widget from where you can either add Image and link or use ads code. For that go to “Appearance => Widgets”, drag and drop “1. Catch Flames Adspace Widget” to your sidebar and add image or ads code accordingly as per your need.

    in reply to: So much empty space! #53612
    Sakin
    Keymaster

    @peenie92: Thanks for your appreciation and if you like Simple Catch Theme then support it by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/simple-catch?rate=5#postform

Viewing 20 posts - 4,561 through 4,580 (of 14,504 total)