Forum Replies Created

Viewing 20 posts - 10,201 through 10,220 (of 14,496 total)
  • Author
    Posts
  • in reply to: Featured Slider #15733
    Sakin
    Keymaster

    @a.jagroe: What’s your site URL? It doesn’t take the image inside the post. But it takes the image from the Featured Image in that post. So, you need to assign Featured Image in those posts. See how to add featured image http://en.support.wordpress.com/featured-images/#setting-a-featured-image

    in reply to: Sidebar #15732
    Sakin
    Keymaster

    @Sarah: If you are talking about the the gap between the widgets then it’s margin button and you can adjust as per you need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .widget {
        margin-bottom: 30px;
    }

    But if you are talking about the padding then it will be as below:

    .widget {
        padding: 30px;
    }
    in reply to: Archives #15694
    Sakin
    Keymaster

    @shamwow: Archive drop down and post page are different. If you select on archive drop down month then only it will filter with the month.

    in reply to: Text on Homepage #15693
    Sakin
    Keymaster

    @shamwow: If you don’t like hyphens then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .site-content article {
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
    in reply to: PNG Images Don't Show Up Transparent #15692
    Sakin
    Keymaster

    @nnicholson1: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .page #main #content img { background-color: transparent; }

    in reply to: Content layout on homepage #15691
    Sakin
    Keymaster

    @jessgranata: The excerpt layout will not work good when you are using Custom Post Format. In each of your post, you need to change that to “Standard” format.

    in reply to: browsers compatability #15690
    Sakin
    Keymaster

    @offirkeren: You should have responsive css for the table. This is not a part of our theme so we don’t normally support it. But I have come up with some kind of solution that will work for you. If it doesn’t then you might need to get CSS developer.
    For now, you can try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .page-id-10 .entry-content td{
        display: inline-block;
        padding-right: 1%;
        width: 31.4%;
    }
    in reply to: Featured Slider #15682
    Sakin
    Keymaster

    @ultradezins: This is strange why it is not working in your site. I need to check in your server. So, I will email you for further correspondence.

    in reply to: Header Right Side Bar Float Left on Mobile? #15676
    Sakin
    Keymaster

    @jmott310: Thanks for your site access. I am able to check in. You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 960px) {	
    #header-right {
        float: left;
    }
    .header-sidebar .widget,
    .header-sidebar .widget_text {
        float: left;
    }
    }
    in reply to: Featured Slider #15674
    Sakin
    Keymaster

    @ultradezins: Remember, it only takes post ID not the page ID. So, please check that. I see that you have added one post ID as 698. So, let’s try adding in as following 4 slides.
    698
    1039
    1027
    865

    in reply to: PDF Documents #15673
    Sakin
    Keymaster

    @Sonia: Get the link url form “Media” and then add the link and when you add link check on “Open Link in New Window/Tab”. See this for more details http://en.support.wordpress.com/links/

    in reply to: browsers compatability #15672
    Sakin
    Keymaster

    @offirkeren: The way you have added table seems to be problem. There is fixed width in the table td. Either you need to reduce that or you need to add responsive table with the help of plugin.

    It is showing correctly in Chrome, as chrome correct the table automatically. Check our this plugin http://tablepress.org/extensions/responsive-tables/ or search for other responsive table plugins.

    in reply to: Site Title and Logo URL link to wrong URL #15669
    Sakin
    Keymaster

    @zuzubailey: First clear you cache from WP Super Cache plugin and check in.

    If this doesn’t work then it must be database issue and you need to do search and replace from this script http://interconnectit.com/products/search-and-replace-for-wordpress-databases/ where you can search for http://50.87.144.107/~zuzu0205/ and replace with http://www.zuzustidbits.com

    in reply to: Can I change my FB & Twitter icons? #15668
    Sakin
    Keymaster

    @kat22: Sorry there is no option in free to do that. You need to manually change the social-profile.png image file from your theme image folder.

    in reply to: Site Title and Logo URL link to wrong URL #15656
    Sakin
    Keymaster

    @zuzubailey: What have you changed in the URL. Check your url at “Settings => General”.

    in reply to: Google Structured Data Tool #15655
    Sakin
    Keymaster

    @shamwow: It will not effect much on search result. You can see most of the WordPress themes doesn’t work on fully in Google Structure data. We have just completed Google Structure with our Catch Box Pro theme. Now we will be doing to for Catch Everest Pro theme. So, wait for new version to come.

    in reply to: Blog #15646
    Sakin
    Keymaster

    @oliver: If you are trying to hide it then you can just add css in “Appearance => Theme Options => Custom CSS” box and hide it. But if you want to edit the functions then you need to buil child theme and create the file functions.php and then add the following Code and edit as per your wish.

    function catcheverest_header_meta() {
    	
    	$date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>',
    		esc_url( get_permalink() ),
    		esc_attr( get_the_time() ),
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date() )
    	);
    	
    	$author = sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
    		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    		esc_attr( sprintf( __( 'View all posts by %s', 'catcheverest' ), get_the_author() ) ),
    		get_the_author()
    	);
    	
    	// Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
    		$utility_text = __( '<span class="on-date">Posted on %1$s</span><span class="by-author"> by %2$s</span>', 'catcheverest' );
    
    	printf(
    		$utility_text,
    		$date,
    		$author
    	);
    }
    in reply to: Blog Header #15645
    Sakin
    Keymaster

    @jpbertram: You can add it in “Appearance => Theme Options => Custom CSS” box. The following CSS is an example where the blog text is replaced by image and then remove the border.

    .page-template-page-blog-php .page-header {
        background: url("http://commishcollege.com/wp-content/uploads/2013/09/packers-49ers-football-anquan-boldin-jerron-mcmillian_pg_600-690x440.jpg") no-repeat scroll 0 0 transparent;
        border: none;
        text-indent: -99999px;
    }
    in reply to: Remove FB & Twitter icon on page #15644
    Sakin
    Keymaster

    @kat22: Our theme doesn’t have FB and Twitter icon under title. So, I think you must have added some plugin to add it. Check your plugins and then delete that plugin.

    in reply to: Homepage top Sidebar #15643
    Sakin
    Keymaster

    @senna: Sorry not sure about this. You need to search in http://wordpress.org/plugins/. We have already noted your issue and will be update soon with new widgets in future updates.

Viewing 20 posts - 10,201 through 10,220 (of 14,496 total)