Forum Replies Created
-
AuthorPosts
-
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.
Sakin
Keymaster@spfitzgerald: Hum… You are using Catch Kathmandu Free theme which only have option to use Featured Post Slider or Featured Category Slider, which highlight your post in your Slider. So, there is no option to remove the link. To add the image slider without the link, you need Featured Image Slider. This option is only there in Catch Kathmandu Pro theme. See details at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/
Sakin
Keymaster@Sakin: Sorry I don’t get it can you post in your site URL so that I can check in.
Sakin
Keymaster@Cybersnaby: Well I cannot do anything without looking at it. Maybe you can upload in any of your demo site. I can suggest you the css. Can you try following CSS in “Appearance => Theme Options => Custom CSS” box.
#header-right { max-width: 541px; } @media screen and (max-width: 560px) { #header-right { max-width: 100%; } } -
AuthorPosts
