Forum Replies Created

Viewing 20 posts - 2,681 through 2,700 (of 14,507 total)
  • Author
    Posts
  • in reply to: Menu Covers up Image #63533
    Sakin
    Keymaster

    @flypig: We will fix this in next version update 1.1. For now, can you add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (max-width: 400px) {
    	#masthead {
    	    padding-bottom: 30px;
    	    padding-top: 64px;
    	}
    }
    in reply to: Seasons decrease between header and posting #63522
    Sakin
    Keymaster

    @lesimi:
    1. You can adjust the padding-top in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    #main { padding-top: 40px; }
    .no-sidebar .hentry { padding-top: 30px; }

    2. You can adjust the padding-top in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
    #header-content { padding-top: 40px; }

    3. I don’t see any footer there

    4. You can add 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;
    }

    5. That administration bar is from WordPress core and it will be visible only to admin user and not for visitors. So, no need to worry about it.

    in reply to: Homepage featured content #63515
    Sakin
    Keymaster

    @akuster: It’s strange why it’s not working in your site. Can you go to “Appearance => Theme Options => Homepage Settings => Homepage Featured Content” and make sure you have uncheck option “Disable Homepage Featured Content?”

    in reply to: Words collision / Impossible to read #63471
    Sakin
    Keymaster

    @came: There is update to version 1.0. Please update and check in change log at http://catchthemes.com/changelogs/catch-adaptive-theme/

    That overlapping is there only is your have column layout in Archive layout options. So, it hides that title back.

    in reply to: Adding additional image to header #63460
    Sakin
    Keymaster

    @akuster: Sorry in Catch Everest Free theme, you only have option to show Social Icons and Search in Header Right Section. For that, you might need to upgrade to pro, where you will get Header Right Sidebar and then you can add Image or any text using widgets from “Appearance => Widgets”

    in reply to: How can I change individual tab color #63423
    Sakin
    Keymaster

    @Dhuan: Ok if it is localhost. Then upload the screenshot of your site and uplaod it in any photo sharing site then post in your screenshot url here. Also let me know the color code that you want to change to and the theme that you are using it.

    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; }

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