Forum Replies Created

Viewing 20 posts - 5,801 through 5,820 (of 14,505 total)
  • Author
    Posts
  • in reply to: Blog post does not show on first page #47863
    Sakin
    Keymaster

    Hello Helena,

    I see that you have added int he following css in “Appearance => Theme Options => Custom CSS” box.

    .home #content-sidebar-wrap, .page .entry-header {
        display: none;
    }

    Just edit that css to the following:

    .page .entry-header {
        display: none;
    }
    Sakin
    Keymaster

    @MIchael: To remove action in child theme, you need to hook with init action. See the code as below:

    // Removing the Default Action Hook
    function unhook_catchkathmandu_functions() {
    	//Add in you hook here
    	remove_action( 'catchkathmandu_before_main', 'catchkathmandu_homepage_featured_position', 5 );
    }
    add_action( 'init', 'unhook_catchkathmandu_functions' );
    in reply to: Problem with small table #47861
    Sakin
    Keymaster

    @Tillman:

    1. You are using Catch Box Pro theme, which is build in responsive design. So, when you use the table you need to use responsive table. Better I suggest you to use Responsive Column. You can use install responsive column plugin and add the image on it. Then you will not have image issue.

    2. You table is larger in 100%. As you have used 4 td elements each 25%, but you forgot the padding that each td is taking 10px each at the right and further it has border on it.

    3. Ok you can remove the border and padding in your image by adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    img[class*="align"], img[class*="wp-image-"], #content .gallery .gallery-icon img, img.wp-post-image, img.attachment-thumbnail {
        border: none;
        padding: 0;
    }
    in reply to: Theme #47860
    Sakin
    Keymaster

    @ashrafashraf: Wow this is huge and it all depends on the plugin you use. For Gallery, I recommend you to use either NExtGen Gallery or JetPack plugin.

    in reply to: Slide featured image url #47859
    Sakin
    Keymaster

    @TBM: Sorry the free version only have Featured Post Slider option. This slider is created to highlight your post in the slider. So, it will automatically add links to respective post. If you just want image, then you need to use Image Slider, which is there only in Pro version, see this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/

    But for free version you don’t have that option. But if you know the technical details, then you can build child theme and edit the post slider codes.

    in reply to: Reduce Sidebar size #47858
    Sakin
    Keymaster

    @lohanc: I check in your site and it’s not using our theme. So, how can I help you with that.

    1. Yes, only the pro version have full width and no sidebar layout. You can check out the theme instructions page for more details about pro version http://catchthemes.com/theme-instructions/catch-kathmandu-pro/. The size of the sidebar is designed properly as per the screensize. So, I don’t recommend to change this. Also we don’t resize with the CM, as website doesn’t recognize CM. We use Pixels or Percentage.

    2. Yes, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
    #hgroup-wrap { background-color: #ccc; }

    in reply to: Selected menu bar item color #47857
    Sakin
    Keymaster

    @aleks.mavric123: You can change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    #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 {
        background-color: #444;
        color: #fff;
    }
    in reply to: Two blogs on one site #47856
    Sakin
    Keymaster

    @fmck718: I am not sure what you mean in 1. But for 2, sorry there is not option to do that. You might need to search for category plugin.

    in reply to: Size of website? #47811
    Sakin
    Keymaster

    @David: 20 MBS size of website is too huge. It will take lot of time to load the site. But if you just linking the file to download then it’s no problem. As it will load file only when people click on download.

    in reply to: I like to bey the Catch Flames Pro Themes #47810
    Sakin
    Keymaster

    @Anne-Pia: About the table in that page, you can added fixed height in your table code. See the following code:
    <table cellspacing="0" cellpadding="0" border="0" align="left" width="584" style="height: 13164px;" class=" aligncenter">

    You need to remove fixed height style="height: 13164px;". So, the code should be
    <table cellspacing="0" cellpadding="0" border="0" align="left" class="aligncenter">

    in reply to: banner ads #47808
    Sakin
    Keymaster

    @Kim: There is not option to do that from theme. It falls under plugin territory. So, search for plugin which help you to add banner. Otherwise, you need to create child theme and add banner to it, which is complicated and will require you to hire customizer. So, searching for plugin at http://wordpress.org/plugins will be best.

    in reply to: responsive not showing private page #47807
    Sakin
    Keymaster

    @paul: I see that you are using default page menu, which will list all the pages in your site. You cannot hide it. But this menu can be replaced by your custom menu. In custom menu, you can add pages/posts/categories/links as per your need.

    So, just create custom menu from “Appearance => Menus”. Then add in the pages, you want to show in your custom menu. Then in Menu location, assign it as “Primary Menu”. Check this http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: Kathmandu Customization #47806
    Sakin
    Keymaster

    @rojtalbot:
    1. For homepage headline color, here goes the css:

    #homepage-message {
        background-color: #21759b;
        border-color: #1b5f7d;
        color: #fff;
    }

    2. I don’t get it what you mean. I don’t need any Featured Content in your Homepage. If you are trying to hide the content in your Featured post slider then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #main-slider .entry-container {
        display: none;
    }
    in reply to: Remove "Catch Kathmandu by Catch Themes" from Footer #47787
    Sakin
    Keymaster

    @vidyaekta: I think you are again misunderstanding us. Where did we advertise. It’s the attribution of theme which will be there in all themes. We haven’t asked in return. There are user who use our Premium theme and still have attribution. This is nothing we have done any kind of advertisement. All themes has it.

    Sakin
    Keymaster

    @aleks.mavric123: Here goes the css for continue reading.

    a.readmore {
        background-color: #fff;
        color: #000;
        display: inline-block;
        padding: 5px 10px;
    }
    in reply to: Post Slider disappears #47782
    Sakin
    Keymaster

    @johanfalk: Did you refresh your browser and check in. As when I check in, your slider is working fine.

    in reply to: Putting Logo Image In Masthead #47781
    Sakin
    Keymaster

    @BlueFalcon: That’s cool 🙂

    in reply to: Remove "Home" field front page #47780
    Sakin
    Keymaster

    @Vibelingo: I think you have set static font page from “Settings => Readings”. If you don’t need front page home, then why do you set that page as static front page. Just remove that from “Settings => Readings”. Then you can go to “Appearance => Theme Options => Homepage / Fontpage Settings”, then check in “Disable Latest Posts” and save changes.

    in reply to: Remove Content #47777
    Sakin
    Keymaster

    @rojtalbot: Please don’t post the same question in 2 places. I have already answered you in http://catchthemes.com/support-forum/topic/kathmandu-customization/

    in reply to: Subtitle and Footer translation #47773
    Sakin
    Keymaster

    @Jaume: Ok so you mean that we add in support for mqtranslate plugin as well. Ok sure we will add this in future version update. Thanks.

Viewing 20 posts - 5,801 through 5,820 (of 14,505 total)