Forum Replies Created

Viewing 20 posts - 2,681 through 2,700 (of 14,501 total)
  • Author
    Posts
  • Sakin
    Keymaster

    @riordino: This is strange, ok I will contact you though email so that I can check in your server.

    in reply to: Featured Content Font change #63419
    Sakin
    Keymaster

    @christiane: Thanks a lot 🙂

    in reply to: Custom Social Media Icon #63418
    Sakin
    Keymaster

    @Enoch: Instagram is already there.

    in reply to: Line Break disappear in featured content columns #63417
    Sakin
    Keymaster

    @carlo caccialanza: Which featured content type are you using it. It depends on that.

    in reply to: Strange code in style.css #63416
    Sakin
    Keymaster

    @baneff: Your CSS will work only for screen which is larger then 1000px.

    in reply to: Social Icon..How to add other? #63414
    Sakin
    Keymaster

    @Luchino: No there is no option to add in custom social icons in Pro version. It’s same with free one.

    So, the solution to add Chat or forum will be. First, edit your social menu and add Chat and Form custom link. In that custom link give the class. For example, for chat give it as socialchat and forum as socialforum, see this screenshot https://www.pinterest.com/pin/548594798337320151/ and add the following css in your Child theme style.css file. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    .social-menu ul li.socialchat a:before {
        content: "\f108";
    }
    .social-menu ul li.socialforum a:before {
        content: "\f108";
    }
    in reply to: Place an adsense ad above the page title #63411
    Sakin
    Keymaster

    @Patrick: Thanks for your appreciation.

    in reply to: Space in Main Navigation Menu #62879
    Sakin
    Keymaster

    @Kim:
    1. Ok then replace the css .sidr ul li ul { display: none; } with the css .sidr ul.sub-menu ul { display: none; }

    2. I am bit confused as you have said post on the post page. But the link you have posted in just a post. There is post navigation above your post title. That is taking space.

    3. It’s because of the custom css you have added in

    body, input, textarea {
        font-size: 20px;
        line-height: 1.99em;
    }
    in reply to: Comment box background color and font? #62862
    Sakin
    Keymaster

    @Laszlo: That css is working fine. But if you are talking about the space that you have above “Categories” meta tags, then that is from space in your pages/posts. For that you edit that page/post and then go to text mode and remove all empty <p></p>. Check this for text mode screenshot https://www.pinterest.com/pin/548594798332210926/

    in reply to: Beginner Question: Featured Blog Postings #62860
    Sakin
    Keymaster

    @philmi: which heading are you talking about? Please explain.

    in reply to: Place an adsense ad above the page title #62857
    Sakin
    Keymaster

    @Patrick: If you want to center all the title of pages/posts then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .entry-header { text-align: center; }

    But if you want to center only page title, then add the following css instead.
    .type-page .entry-header { text-align: center; }

    For Google Adsense above page title, I recommend you to search for plugin as it’s little complicated to do it from theme. To do it from theme, you need to build child theme, for child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the code like below in your child theme functions.php file

    function catchresponsive_adsense_above_pagetitle() { ?>
    	add in your code here
    <?php
    }
    add_action( 'catchresponsive_before_page_container', 'catchresponsive_adsense_above_pagetitle', 20 );
    in reply to: logo, color, form the navigation bar #62856
    Sakin
    Keymaster

    @Dhuan: To make footer menu, left below and right above Curved you can add the following css:

    #colophon #access-footer {
        -moz-border-radius: 0 10px;
        -webkit-border-radius: 0 10px;
        border-radius: 0 10px;
    }

    For slider background color and border color, you can change the color code in the following css and add it in “Appearance => Theme Options => Custom CSS” box:

    #slider {
        background-color: #555;
        border-color: #ccc;
    }

    To change the white color, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #branding,
    .hentry, 
    .no-results, 
    #author-info, 
    #disqus_thread, 
    #content .error404,
    .widget,
    #site-generator {
        background-color: #fff;
    }
    in reply to: logo, color, form the navigation bar #62855
    Sakin
    Keymaster

    @Barb: That Continue reading → at the homepage top left corner is from “PressGraph Post Meta Tags”. So, disable that plugin and you issue will be solved.

    For menu background color, 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:

    #branding #access, 
    #colophon #access-footer, 
    #branding ul.menu ul a {
        background: none #b7d6ab;
    }
    in reply to: Space in Main Navigation Menu #62853
    Sakin
    Keymaster

    @Kim: For that, just add the following css in “Appearance => Theme Options => Custom CSS” box:
    .sidr ul li ul { display: none; }

    in reply to: Update to 3.0 #62851
    Sakin
    Keymaster

    @andrewmaff: There are two common method you ccan use to update the theme. 1. Using FTP and 2. Using WordPress Administration Panel. For this, you can ready theme instructions page at http://catchthemes.com/theme-instructions/full-frame-pro/#updating

    in reply to: Google Adwords Tracking code #62850
    Sakin
    Keymaster

    @senna: For this I recommend you to use plugin for this. try searching for plugin at https://wordpress.org/plugins/

    Also are you using contact form 7 plugin in your contact page. Then check this https://wordpress.org/support/topic/contact-form-7-adwords-conversion-tracking

    in reply to: Increase Main Nav Menu Font Size #62849
    Sakin
    Keymaster

    @Cybersnaby: Please post in your site URL so that I can check in why it’s not working. The following should work fine. Did you add that css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .catchbase-nav-menu a { font-size: 20px; }

    To center it, you can add the following css:

    .nav-primary .wrapper { text-align: center; }
    .nav-primary .menu, .nav-primary.search-enabled .menu {
        display: inline-block;
        float: none;
        margin: 0 auto;
    }
    in reply to: Scroll up only works on one page. #62848
    Sakin
    Keymaster

    @blackkeys: I see your about us page only have long content and other pages don’t have This is the reason it’s not showing scroll up in other pages.

    in reply to: Reduce Menu Height #62847
    Sakin
    Keymaster

    @SungJu: Please post in appropriate forum. This is for Catch Kathmandu theme, that is why it will not work in your site. For Simple Catch Pro theme, you need to use forum http://catchthemes.com/support-forum/forum/simple-catch-pro-premium/

    So, to reduce the height of your menu, you can reduce the line-height in the following css and then you need to reduce top as well. Otherwise, your submenu will not work.

    #access ul li a { line-height: 48px; } 
    #access ul li ul { top: 48px; }
    in reply to: display menu titles? #62840
    Sakin
    Keymaster

    @effess: Script are in catchkathmandu-menu.js, you can add in your own script. Yes, if coding is difficult then please is the best method.

Viewing 20 posts - 2,681 through 2,700 (of 14,501 total)