Forum Replies Created

Viewing 20 posts - 6,801 through 6,820 (of 14,504 total)
  • Author
    Posts
  • in reply to: reduce text font size ONLY in optional sidebar #41722
    Sakin
    Keymaster

    @Rachelle: Yes you can do that by adding css in “Appearance => Theme Options => Custom CSS” box. But it will not be like sidebar one. But we need the page links to add the css for that particular pages only. So, let me know the changed font size and the pages url.

    in reply to: Catch Kathmandu Pro update to 2.8 #41720
    Sakin
    Keymaster

    @Robert: Looks like your hosting server has upload limit of 2MB and our theme size is 2.2MB. So, please contact your hosting server support to increase the upload limit. It is set in your server php.ini file. The code in your php.ini file will be as below where I have set it as 10MB. Show this to your web hosting server support:

    upload_max_filesize = 10M
    post_max_size = 10M
    max_execution_time = 300
    in reply to: font size; site tagline; losing formatting #41719
    Sakin
    Keymaster

    @Consciousness:
    (1) There is Font Family option in Catch Evolution Pro version. So, upgrading is the simple solution. But if you just want to change to other web safe font, then you can change the font in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    body, input, textarea {	
        font-family: Arial, Helvetica, sans-serif;
    }

    (2) You change the tagline text to italic by adding the following css in “Appearance => Theme Options => Custom CSS” box:

    #site-description {
        font-style: italic;
    }

    But to change the font size can be problematic, as this is responsive theme and when you increase the font it will effect your mobile font size as well. So, here is the following css that you can add do that it will increase only in large screens. Just increase the font size as per your need.

    @media screen and (min-width: 961px) {	
        #site-description {
            font-size: 14px;
        }
    }

    (3) This Error establishing a database connection is your sever issue and not the theme issue. This spacing issue happens when you edit from text and visual mode. So, try to use only text or visual mode only

    in reply to: Slider Image not cropping #41717
    Sakin
    Keymaster

    @ToddWilliam: I see that you have activated Jetpack plugin “Photon” module, which loads the images from wp.com CDN. That is why it your image cropping not working with thumbnail editor. So, the best in this stage will be to upload the cropped version as featured image.

    in reply to: Featured contents data wiped.. why?? #41716
    Sakin
    Keymaster

    Hi Marek,

    If you want full width without the sidebar, then you need to upgrade to Adventurous Pro theme where you option to use “No Sidebar, Full Width” Layout which will solve your issue.

    Regards,
    Sakin

    in reply to: Featured Image Caption Question #41710
    Sakin
    Keymaster

    If you measure it. It is exactly aligned with your logo. It’s aligned top. But if you want to move it down then you can add the following css in “Appearance => Theme Options => Custom CSS” box. If you want it further down then you can increase the padding from 10px to 15px or more.

    @media screen and (min-width: 961px) {
        #sidebar-header-right .widget {
            padding-top: 10px;
        }
    }
    Sakin
    Keymaster

    @Morganti: There is option to disable slider. Go to “Appearance => Theme Options => Featured Slider => Slider Options” and in “Enable Slider”, you can select “Disable” and save changes.

    To add Meta Slider in place of current slider. First disable the slider as instructed above. Then you can build child theme. You can download sample child theme from here http://catchthemes.com/blog/create-child-theme-wordpress/. There in this child theme, you cad add the following code in the child them functions.php file. In the following code I have added sample meta slider shortcode. So, you need to replace [metaslider id=123]

    /**
     * Add Meta Slider in place of default slider
     */
    function adventurous_child_meta_slider() {
    	//Add your meta slider code
    	echo '<div id="main-slider">';
    		echo do_shortcode("[metaslider id=123]");
    	echo '</div><!-- #main-slider -->';
    }
    add_action( 'adventurous_before_main', 'adventurous_child_meta_slider', 40 );
    in reply to: Featured Content "Add Image" Button won't work #41696
    Sakin
    Keymaster

    @northforkconnectors: Yes this is known issue and we have already fixed it and submitted the new version to WordPress.org. They will release the update soon. Till them you can use the Media Uploader from “Media => Add New” and then copy the image link and paste it in the image url.

    in reply to: Featured Image Caption Question #41693
    Sakin
    Keymaster

    Hello 2 Brown Dawgs Blog,

    I just check in your site Homepage and see that you have caption in image for article “Wordless Wednesday–Bringing The Greens” as this article doesn’t have any content and just a single image. So, the homepage take the the image as it is. If you have content on this page like your order posts then it will not show the caption.

    But still if you want to disable caption in the homepage then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    .home #content .wp-caption {
        background: none transparent;
        max-width: 100%;
        padding: 0;
    }
    .home #content .wp-caption .wp-caption-text {
        display: none;
    }
    in reply to: Menu alignment/spacing issue. #41692
    Sakin
    Keymaster

    @Steven: Can you share your site URL so that I can check in? Header Right Menu (Primary) Menu space depends on the logo that you have added. If you logo is big then, it will push your menu down as there is no space in the right. Similarly, if you have lot of menu item and if there is not enough space then it will push menu down.

    When you are using Primary menu, then we recommend you to use small logo and few menu items. If you wan to use large logo and then long menu items then you can use secondary menu. If you need more information about menu the check in http://catchthemes.com/blog/custom-menus-wordpress-themes/ and theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    in reply to: round borders #41669
    Sakin
    Keymaster

    Hi Toni,

    You can add the following css in “Appearance => Theme Options => Custom CSS” box to add top right and left corner as the rounded corner fro all widgets.

    #secondary .widget, #third .widget {
        border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        -webkit-border-radius: 5px 5px 0 0;
    }

    Regards,
    Sakin

    in reply to: How Do I Enlarge Logo Adventure Pro #41667
    Sakin
    Keymaster

    @Michael: I also see that you have directly edit files inside adventurous-pro theme directory. Please don’t do that, as all the edits inside adventurous-pro theme will be reverted back to original when you update the theme.

    To change the images in the slider, you just select Featured Image slider and add it which is shown in http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/ and further you can see detail theme instructions at http://catchthemes.com/theme-instructions/adventurous-pro/

    in reply to: How Do I Enlarge Logo Adventure Pro #41666
    Sakin
    Keymaster

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

    #masthead.fixed-header #site-logo img {
        max-height: 134px;
    }
    in reply to: Customizing Post Pages #41665
    Sakin
    Keymaster

    Hello Christine,

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

    .entry-meta { display: none; }
    .single .entry-header .entry-meta { display: block; }

    Regards,
    Sakin

    in reply to: Featured contents data wiped.. why?? #41664
    Sakin
    Keymaster

    Hi Marek,

    This is strange. I check in Adventurous theme as you said and it’s working fine. We are not loosing any data. There is only one change that you might have open Theme Options panel in 2 browser or 2 tabs or 2 computer. Where when you save it the Facebook, the featured content must be empty. Other, it should be working fine.

    Regards,
    Sakin

    in reply to: Featured Image Problem! #41652
    Sakin
    Keymaster

    @KingBetts: We have already submitted to WordPress.org so now it’s on their had to release the update. So, it can be fast by tomorrow or can take up to 7 days.

    in reply to: Featured Image Problem! #41641
    Sakin
    Keymaster

    @KingBetts: You can replace the following code:

    <?php if ( get_next_posts_link() ) : ?>
    <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'catcheverest' ) ); ?></div>
    <?php endif; ?>
    
    <?php if ( get_previous_posts_link() ) : ?>
    <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'catcheverest' ) ); ?></div>
    <?php endif; ?>

    with the the following:

    <?php if ( function_exists('wp_pagenavi' ) ) :
    	wp_pagenavi();
    endif; ?>

    But it’s better you wait for the update.

    in reply to: Featured Image Problem! #41639
    Sakin
    Keymaster

    @KingBetts: Oh you are talking about same post pagination. Yes, as it’s the same post it will show same featured image in your second, third and so on pages. This is WordPress default function and we don’t have control in it.

    Oh Sorry the wp_pagenavi() function is not there in Catch Everest theme. We will be adding this in next version update. Either you can wait for the new release or you can just build child theme and edit template-tags.php file and add the functions there in catcheverest_content_query_nav and catcheverest_content_nav functions.

    in reply to: ad not showing in widget box #41623
    Sakin
    Keymaster

    @j9hagop: I check in your ad code and it’s working fine. But I see that this ad code is not responsive design and has fixed 300px width. It’s better to have responsive ads so it’s shows nicely in mobile devices as well.

    So, in this ad code you mean that you have problem only when there is gourmet ads. I am not been able to find the issue. So, can you check with your ad publisher support forum.

    in reply to: Header #41621
    Sakin
    Keymaster

    @luke76: Can you add the following css in “Appearance => Theme Options => Custom CSS” box.
    #header-content { padding: 0; }

Viewing 20 posts - 6,801 through 6,820 (of 14,504 total)