Forum Replies Created

Viewing 20 posts - 2,661 through 2,680 (of 14,501 total)
  • Author
    Posts
  • in reply to: Can I have a menu item that does not link to a page? #63790
    Sakin
    Keymaster
    in reply to: Can I have a menu item that does not link to a page? #63720
    Sakin
    Keymaster
    in reply to: Strange code in style.css #63716
    Sakin
    Keymaster

    @baneff: No problem. Thanks 🙂

    in reply to: Remove author in blog post, keeping the date #63715
    Sakin
    Keymaster

    @taylorlionnet: in WordPress, you need to create User and then only you can change the author.

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

    @Luchino: Cool… Thanks 🙂

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

    @Dhuan: If you just want to change the color then, you can replace the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    #branding #access {
    	background: none #3e6107;
    }

    But if you want to replace and make it like gradient. Then instead of above css, you need to replace the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #branding #access {
    	background: #3e6107; /* Show a solid color for older browsers */
    	background: -moz-linear-gradient(#53810a, #3e6107);
    	background: -o-linear-gradient(#53810a, #3e6107);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#53810a), to(#3e6107)); /* older webkit syntax */
    	background: -webkit-linear-gradient(#53810a, #3e6107);
    	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#53810a', endColorstr='#3e6107'); /* for IE */
    }
    in reply to: Line Break disappear in featured content columns #63712
    Sakin
    Keymaster

    nice 🙂

    in reply to: Copyright – align left & bold #63709
    Sakin
    Keymaster

    @Phil: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #site-generator {
        font-weight: bold;
        text-align: left;
    }
    in reply to: Replace Featured Slider with embeded video #63708
    Sakin
    Keymaster

    @Harry: Sorry there in no option to add in Embedded video to replace the Featured Image Slider.

    But if you want then you can do it in custom way. For that, you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then just add the following code in your child theme functions.php file:

    function catchresponsive_featured_slider() { ?>
    	<section id="feature-slider">
    		<div class="wrapper">
    				Add in Video here 
    		</div><!-- .wrapper -->
    	</section><!-- #feature-slider -->
    <?php 
    }
    in reply to: Homepage featured content #63707
    Sakin
    Keymaster

    @akuster: Ok I have already emailed you. Please reply me there.

    in reply to: Homepage featured content #63705
    Sakin
    Keymaster

    @akuster: Ok I will email but when I check in your site it’s still child theme.

    in reply to: Homepage featured content #63703
    Sakin
    Keymaster

    @akuster: Then it might be issue with your child theme. Can you try activating main Catch Everest Theme and check in. If there is still issue then I will email you to check in your server.

    in reply to: Schema Markup #63702
    Sakin
    Keymaster

    @svoelker: We haven’t added in schema. So, can you let me know what exactly you are trying to add. Maybe, I can help you with customization using child theme.

    in reply to: Short code not showing up in footer and posts #63548
    Sakin
    Keymaster

    @Brook: WordPress excerpt will not show any formatting or short-code. So, if you want to display that in post in homepage/archive, then you need to go to “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout” and select “Show Full Content (No Featured Image).

    Then if you want to split content in your home/archive page, then you can use more tag <!--more-->. To read about more tag, check this http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/

    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.

Viewing 20 posts - 2,661 through 2,680 (of 14,501 total)