Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@mebiotti: Oh the background option is not there in this theme. You might need to hire customizer to add this for you.
Also the custom css that you have added in “Appearance => Theme Options => Custom CSS” box is having issue with the responsive design. Also you have added so many CSS. I don’t know why. You are supposed to add only css that you need. So, either you need to disable responsive design or you cannot add custom width like the following css
.no-sidebar #primary { width: 1200px; } /* No Sidebar One Column */ .one-column.no-sidebar .site { width: 1200px; }So, please fix this first.
Sakin
Keymaster@shally: Can you tell me more details about your issue. Maybe screenshot. Also if you have account and download issue then you can contact our sales team directly at http://catchthemes.com/contact-us/
Sakin
Keymaster@Dennis Lynge Nielsen: I see that you are using Catch Kathmandu Free theme and the images that you are seeing is the demo Featured Slider.
To change the Featured Slider image and text
1. First you need to create post and add featured image in post. As the slider takes the Featured Image, title and excerpt content of the post.
2. Then go to “Appearance => Theme Options => Featured Slider” in your WordPress Dashboard
3. Under Slider Options select Slider Type as “Featured Post Slider” if you want to add in the post ID. Or you can select type as “Category Slider” if you want to show the latest post from particular category.
4. If you choose “Featured Post Slider” then under Featured Post Slider Options, simply insert the ID numbers for Posts in the boxes, one Post ID number in each box. Or if you choose “Category Slider” then under Featured Category Slider Options, select the category.
5. Then click on “Save Changes”Screenshots:
Settings Featured Image: http://www.pinterest.com/pin/548594798329948788/
Setting Post ID: http://www.pinterest.com/pin/548594798329984427/But in Catch Kathmandu Pro, you have independent Featured Image Slider and Page Slider as extra slider type.
For more details view theme instruction
Catch Kathmandu Free Version: http://catchthemes.com/theme-instructions/catch-kathmandu/
Catch Kathmandu Pro Version: http://catchthemes.com/theme-instructions/catch-kathmandu-pro/Sakin
Keymaster@mebiotti: When I check in our server it is working fine. Check your setting at “Appearance => Header”. Check “Uploaded Images” settings, you have to click on “Random: Show a different image on each page.” and then “Save Changes”
Sakin
Keymaster@bschell: For the design similar to your reference site, you need to choose Catch Evolution Theme http://catchthemes.com/themes/catch-evolution/ which is similar in terms of header and sidebar. But for 2 columns post you might need to hire customizer to work on it. We don’t have that option at this stage. We will add this in our further updates. Will send it to our developer team. But sorry no option at this stage.
Also you can add post and sidebar in hompepage from “Appearance => Theme Options => Homepage Settings => Homepage / FrontPage Settings” and check to “Enable Latest Posts or Page” and save changes.
Sakin
Keymaster@Peter_C_: The preview of Catch Kathmandu Free and Pro version is same as bit shares same code base. The only difference in the features. We didn’t add the free one in our site as it already have it in WordPress.org itself http://wordpress.org/themes/catch-kathmandu.
Catch Kathmandu Free version have responsive mobile for Primary Menu. We only disable it for Secondary and Footer Menu. As to remove the distraction in small mobile devices with 3 menus. In pro version as well, we have disable it by default. In pro version, you need to enable that from “Appearance => Theme Options => Responsive Options”.
Sakin
Keymaster@Manu: Sorry you need to send me some kind of hint like the size that you expect or maybe screenshot of the design.
Sakin
Keymaster@Peter_C_: Yes, take your time to decide. This is the live preview of Catch Kathmandu Pro theme http://catchthemes.com/demo/catch-kathmandu/
Sakin
Keymaster@Peter_C_: Yes, there is option to enable only in Pro Version. If you want the web style menu then display block works good but if you want mobile version menu then the Javascript is also given in that link.
Sakin
Keymaster@lambdog:
1. First build a child theme. You can create the folder like catch-box-pro-child and create style.css in this child theme. Here goes the sample style.css/* Theme Name: Catch Box Pro Child Theme Theme URI: http://catchthemes.com/themes/catchbox-pro Author: Catch Themes Team Author URI: http://catchthemes.com Description: Catch Box Pro is an advance version of our popular theme Catch Box. It is based on HTML5, CSS3 and Responsive Web Design to view in various devices. Some of the additional features includes: featured image slider, option for full width slider, disable responsive layout, header option for margins, image and search, color options, additional color scheme, font family options, font size options, additional default layout options, additional optional sidebar for homepage, archive, pages, and posts, homepage category setting, more tag text options, and footer editor options. Multilingual Ready (WPML) and also currently translated in Brazilian Portuguese, Spanish, Danish, Germany, French, Polish, Czech, Croatian, Italian, Swedish, Russian, Arabic, Serbian, Dutch, Persian, Hungarian, Slovak and Japanese. Version: 1.0 License: GNU General Public License, version 3 (GPLv3) License URI: http://www.gnu.org/licenses/gpl-3.0.txt Tags: dark, light, blue, white, black, gray, one-column, two-columns, left-sidebar, right-sidebar, fixed-layout, fluid-layout, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready Text Domain: catchbox Template: catch-box-pro */ /* =Import Catch Box Pro Parent CSS -------------------------------------------------------------- */ @import url("../catch-box-pro/style.css"); /* =Child Theme Custom CSS -------------------------------------------------------------- */2. Then create functions.php file and add your advertisement like below:
<?php /** * Catch Box Pro Child Theme functions and definitions * */ // Add in Advertisement after header function catchbox_child_advertisement() { ?> <!--- You can add your ads code here --> <div class="leaderboard-ads"> Hello Ads </div> <?php } add_action( 'catchbox_after_header', 'catchbox_child_advertisement', 10 );Sakin
Keymaster@spfitzgerald: There is problem with the css that you have added in custom css box. There is extra curly bracket.
Please fix the below css
#site-logo {padding-top: 5px; }}
with the following
#site-logo {padding-top: 5px; }After that there is following css in your custom css box will work fine. You might need to change the passing as per you need.
#header-right { padding-top: 5px; }Sakin
Keymaster@BusyB: Your case is different and you are using Simple Catch theme. So, I guess you are trying to remove the grey header background. For that you can add the following css in “Appearance => Theme Options => Custom CSS” box.
#header { background-image: none; }Sakin
Keymaster@spfitzgerald: I just check in your site and found that you have following CSS in “Custom CSS” box.
#hgroup-wrap { padding-left: 2px;padding-top: 0;padding-top:3rem; padding-bottom: 0; }So, you can edit that css and change the padding top 0 so it will be as below:
#hgroup-wrap { padding-top: 0; padding-bottom: 0; padding-left: 2px; }And further you have following css in Custom CSS box.
#site-logo {padding-top: 0; padding-top: 3rem;}Change that to
#site-logo {padding-top: 5px; }and then add the following css
#header-right { padding-top: 5px; }Sakin
Keymaster@kat22: WoW!!! that’s a lot of questions. I think you should consider hiring a customizer.
1. How can I reduce the padding above the social icons and under the menu?
— Add the following css in “Appearance => theme Options => Custom CSS” box.#header-right, hgroup { padding-top: 10px; } #hgroup-wrap { padding-bottom: 10px; }2. How can I reduce the background, the white color around my site?
— There is no white color around your site.2. How can I change the color of the menu (if scrolling over and if selected) into #FF0080? And the font?
— Add the following css in “Appearance => theme Options => Custom CSS” box..header-sidebar .widget ul.menu li:hover > a, .header-sidebar .widget ul.menu a:focus, .header-sidebar .widget ul.menu .current-menu-item > a, .header-sidebar .widget ul.menu .current-menu-ancestor > a, .header-sidebar .widget ul.menu .current_page_item > a, .header-sidebar .widget ul.menu .current_page_ancestor > a { background-color: #FF0080; }3. I would like to have only 1 featured content on the homepage (welcome to my website + intro text), is that possible? I can only reduce the number of columns to 3 and I keep 4 featured contents.
— There is featured call Homepage Heading in “Appearance => Theme Options => Homepage Settings => Homepage Headline Options”, then you can add the welcome intro text there. You can remove that Homepage Featured content from “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options”. Also if you only want only 1 column then just fill in detail in Featured Content #1 and leave other empty.4. And last…(for now :-)) how can I make the text broader on the page ‘about me’?
Sorry, “The Full Width, No Sidebar” layout is only available in Catch Kathmandu Pro version. See more details about Pro version at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/Sakin
Keymaster@bschell: I have added in Catch Kathmandu Child theme style.css, you can copy the code from https://gist.githubusercontent.com/catchthemes/10444389/raw/2c2b33fb7bdd90bf01e492efb057b311d1c416d4/style.css
Sakin
Keymaster@bschell: That is Homepage Headlines. You can either disable it or change it from “Appearance => Theme Options => Homepage Settings => Homepage Headline Options”.
For more check out theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu/
Sakin
Keymaster@LEGAGNEUR: Sorry in Catch Box Pro theme we don’t have sidebar in 404 page. This wil be complicated to achieve it. You need to build child theme and copy 404.php file to your child theme and then add sidebar and then edit css. So, I recommend to hire a customizer.
-
AuthorPosts
