Forum Replies Created

Viewing 20 posts - 7,841 through 7,860 (of 14,497 total)
  • Author
    Posts
  • in reply to: Footer Widgets Wonky #27720
    Sakin
    Keymaster

    @Karin: I just check in your site and you are not using our theme. You need to ask in Theme Authors support forum.

    in reply to: Menu doesn't work on Nexus 5 and on Iphone #27719
    Sakin
    Keymaster

    @Dirk: Can you check your settings at “Appearance => Theme Options => Responsive Design”. I see that you are using Secondary menu for this you need to check ”
    Enable Secondary & Footer Menu in Mobile Devices” and save change.

    in reply to: Changing footer color #27718
    Sakin
    Keymaster

    @Dirk: Go to “Appearance => Theme Options => Color Options => Site Color Options”. Then you can change “Footer Background Color” for the footer copyright information box and “Footer Background Sidebar Color” for footer sidebar area where you have social icons.

    in reply to: adsense responsive ad #27717
    Sakin
    Keymaster

    @Ralph177: I see that you have already added Ads in your Header Right Sidebar. So, I think you solved it. The only problem I see is the Header right and Header Left margin. You have kept as 10% which is huge. Just go with smaller numbers like 3%, 2%…

    in reply to: Adding "Latest posts" to static homepage #27715
    Sakin
    Keymaster

    @Onyinye: Sorry your question is bit confusing. By default your homepage will show the latest post. But if you want to change that to other. Then you need to go to “Settings => Reading” and change the “Front page displays” settings. For example, if you want static page as homepage, then check “A static page (select below)” and choose page in “Front page” select box and then for your post page you can choose “Posts page” and this page will show all your posts.

    in reply to: How to change header size #27714
    Sakin
    Keymaster

    @Onyinye: I see that you are using Custom Header from “Appearance => Header” instead of Log from “Appearance => Theme Options => Header Options” and just add your image in logo. But if you want to keep the custom header as it is then you need to hide the header content which is talking space. So, for that just add the following css in “Appearance => Theme Options => Custom CSS” box.
    #header-content { display: none; }

    in reply to: Display category besides date insted of author #27663
    Sakin
    Keymaster

    @GiovannaChine: Post categories is shown in the simple post like this http://catchthemes.com/demo/simplecatch/uncategorized/beautiful-view-from-namobuddha/

    Sorry I don’t get it what you mean. Maybe you can share your site URL and explain in reference to your site.

    in reply to: White space above post #27661
    Sakin
    Keymaster

    @Jonathan: You can add the following css in “Appearance => Theme Options => Custom CSS” box to decrease the padding top

    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
        padding-top: 15px;
    }

    You can add the following css in “Appearance => Theme Options => Custom CSS” box to remove the hyphenation

    #content article {
    	word-wrap: normal;
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
    in reply to: Display Category on Page #27656
    Sakin
    Keymaster

    @Jonathan: Sorry I don’t get it why you need page to display the category. You can use the Category itself and add category in menu.

    I have already given you the css. You need to change the padding and margin in those css and then add in.

    in reply to: Changing 'category' in widget and archives #27574
    Sakin
    Keymaster

    @pennsavage: Just go to “Appearance => Widgets” and in “Footer Area Two” where you have added in the Categories widget. Just click on it and add in Title: as topics

    in reply to: "Posted on by" getting rid of the 'on' #27573
    Sakin
    Keymaster

    @pennsavage: We cannot delete just on from custom css box. But we can hide whole text Posted on by add in the following css in “Appearance => Theme Options => Custom CSS” box.
    .entry-header .entry-meta span:first-child { display: none; }

    The only way to delete just on and date will be by building child theme. If you build child theme then you can remove the above css and the css you have added.
    1. Create functions.php file in your child theme and then copy function catchevolution_posted_on from catchevolution-functions.php file to your child theme functions.php file and edit it. So, the code in your child theme functions.php file will be as following

    <?php
    /**
     * Prints HTML with meta information for the current post-date/time and author.
     * Create your own catchevolution_posted_on to override in a child theme
     *
     * @since Catch Evolution 1.0
     */
    function catchevolution_posted_on() {
    	printf( __( '<span class="sep">Posted </span><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'catchevolution' ),
    		esc_url( get_permalink() ),
    		esc_attr( get_the_time() ),
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date() ),
    		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    		esc_attr( sprintf( __( 'View all posts by %s', 'catchevolution' ), get_the_author() ) ),
    		get_the_author()
    	);
    }

    2. Create child theme style.css as https://gist.github.com/catchthemes/11313660#file-style-css

    in reply to: home page/ remove nothing found archive #27571
    Sakin
    Keymaster

    @peithoemporium: If you don’t want post then what you want to add in. You can add in your welcome page instead. For that just create page, for example “Welcome to http://www.peithoemporium.com&#8221; and then add the text in that page and publish it. Then you can show that page in homepage from “Appearance => Readings” and select “A static page (select below)” and choose page in “Front page” and save change

    in reply to: Social icons display blank on hover #27570
    Sakin
    Keymaster

    @tlrome: Looks like you have added custom css from Jetpack Plugin in “Appearance => Edit CSS”, where you have to delete the background none in the following css
    .widget ul > li a:hover,a:focus,a:active{color:#1982d1;background:none;text-decoration:underline;font-style:italic}

    Note: Also I see that you have change the width of the columns and this is effecting responsive design. When you change the width of the column you either need to disable the responsive design or you need to change the widget in various responsive devices width.

    in reply to: Display Category on Page #27568
    Sakin
    Keymaster

    @Jonathan: Sorry there is no layout to just show the title only in the category page. For this you need to build child theme and then work on custom template to show only post title in particular category.

    Your second question answer, as you are using small images as featured image in the post. Design looks bit odd. As we created this design with large featured image. But I have css that will make your category page with small thumbnail looks good. Add the following css in “Appearance => Theme Options => Custom CSS” box.

    .category .entry-summary {
        height: 1%;
        overflow: hidden;
    }
    .category .entry-summary .wp-post-image {
        display: inline-block;
        float: left;
        margin: 0 10px 10px 0;
        width: 25%;
    }

    If you want change the spacing then you have change it for various screensize. So, be careful and change it. You can adjust the padding and margin bottom as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    /* For Large Screen */
    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
        margin-bottom: 40px;
        padding: 30px;
    }
    /* For Max Screen Size of 1224px */
    @media screen and (max-width: 1224px) {
    	.hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
    		margin-bottom: 30px;
    		padding: 40px 38px;
    	}	
    }
    /* For Max Screen Size of 767px */
    @media screen and (max-width: 767px) {
    	.hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
    		margin-bottom: 10px;
    		padding: 10px;
    	}
    }
    in reply to: Space underneath the logo #27550
    Sakin
    Keymaster

    @about2flip: For this you I need to check your site. Please add in the site URL.
    If are you using default Catch Kathmandu theme then you can try reduce the padding in following css and then add it in “Appearance => Theme Options => Custom CSS” box.
    #hgroup-wrap { padding-bottom: 50px; }

    in reply to: Landing Page #27549
    Sakin
    Keymaster

    @rsolosky: Yes sorry that the option from WordPress. Custom Menus are great if you start using it. As later in future if you want to include like categories, posts, custom links and so on. But if you still want to use in Page Menu and exclude some page then you need to add in plugin for that.

    in reply to: home page/ remove nothing found archive #27493
    Sakin
    Keymaster

    @peithoemporium: Looks like you don’t have any post published. So, you can create post from “Posts => Add New” or if you want to show static page then go to “Settings => Readings” and select “A static page (select below)” and choose page in “Front page” and save changes.

    in reply to: Changing 'category' in widget and archives #27489
    Sakin
    Keymaster

    @pennsavage: Can you post in your site URL so that I can see what’s happening to your category widget and category archieves.

    in reply to: "Posted on by" getting rid of the 'on' #27488
    Sakin
    Keymaster

    @pennsavage: If you add that css in “Appearance => theme Options => Custom CSS box then it should hide both entry meta. Can you post in your site URL and show me which section is not being hide.

    in reply to: Display Category on Page #27487
    Sakin
    Keymaster

    @Jonathan: Sorry I don’t understand your question. Also I don’t see meta boxed of the category posts.

Viewing 20 posts - 7,841 through 7,860 (of 14,497 total)