Forum Replies Created

Viewing 20 posts - 6,421 through 6,440 (of 14,505 total)
  • Author
    Posts
  • in reply to: Unidentified image in the header #43788
    Sakin
    Keymaster

    @Michaela: Can you post in your site URL so that I can check in. For screenshot url, you need to upload your screenshot image in your site or any photo sharing site and then post in the url here.

    in reply to: Center Footer Content and Footer Widget #43787
    Sakin
    Keymaster

    @Heinz: Ok I have changed to Catch Kathmandu Pro version. I see that you have added footer content in table. For this, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #supplementary .widget-area,
    #site-generator .copyright {
        text-align: center;
        width: 100%;
    }
    #site-generator td {
        text-align: center;
    }
    in reply to: Featured Content Images not centered #43786
    Sakin
    Keymaster

    @Adam: Can you post in your site URL so that I can check in.

    in reply to: Add media, add tag, link buttons not working #43784
    Sakin
    Keymaster

    @Stephven: Sorry I won’t be able to debug it in detail as I will not not access to your WordPress plugin. Yes, the most changes are with your recent plugin updates or new plugin added. So, you can check this my disabling plugin one by one and find the conflicting plugin.

    in reply to: Titles display #43783
    Sakin
    Keymaster

    @Wilfried: Yes, most of the questions has already been answered. Thanks for sharing the solution that you found out. Cheers 🙂

    in reply to: Sidebar appearing below footer #43745
    Sakin
    Keymaster

    @Darthfluffy: I just check in your post pages where you have added “Disqus” comment. But post pages shouldn’t have it. Comment should be only there in posts and pages. So, it’s on the customization that you have done.

    in reply to: Forum – is there a way to search within a theme? #43721
    Sakin
    Keymaster

    Hi Kim,

    About the date setting, you can set it from “Settings => General” and then change the date format. You can choose either predefined date format or even add your own custom date format.

    Page will not have date. I cannot view your site at this time. Can you check your site if it is live or not.

    Regards,
    Sakin

    in reply to: Remove White Space Above Menu #43713
    Sakin
    Keymaster

    @gareth.milne: Why don’t you select “No Sidebar, Full Width” content layout options from “Appearance => Theme Options => Layout Options”

    Sakin
    Keymaster

    @natoulie: About the menu in mobile, It will show menu if there is no page that is in menu item or in home. It will show text Menu and if you click on any menu item then it will show that page/post title.

    I check in your site and the line height is working fine for screensize above 1060px.

    in reply to: Site Title and Tagline not centered verticaly #43709
    Sakin
    Keymaster

    Hi Stéphane,

    Your site is not opening at this time to check from my mobile. Yes, I know that your site has issue with the font size the plugin from where you have added the site for site title. It added the fixed size and not responsive size. So, I recommended you to remove that custom size from your plugin and add the css that I have you, which has size css.

    Regards,
    Sakin

    in reply to: Remove White Space Above Menu #43708
    Sakin
    Keymaster

    @gareth.milne: Ok that is the issue. If you have FTP or Hosting Control panel then you can go to wp-content directory and then plugins directory and delete qtranslate plugin and it will work.

    in reply to: Sidebar on Front Page only? #43705
    Sakin
    Keymaster

    Hi Robertf,

    For homepage, you need to select the page in Front page. I don’t know your site URL to check in work in progress.

    Regards,
    Sakin

    in reply to: Remove White Space Above Menu #43704
    Sakin
    Keymaster

    @gareth.milne: Did you installed any new plugin or made changes to ‘catch-evolution-pro’ directory. Then remove the newly installed plugin from FTP. You can ask for your hosting server support to solve issue for you. I will not be able to help it as this will be in your server where I cannot access it.

    in reply to: Site Title and Tagline not centered verticaly #43691
    Sakin
    Keymaster

    Hi Stéphane,

    When you add the font size, make sure you adjust it in your mobile devices as well. Otherwise, you can just use the font size only for bog screen with condition like this

    /* Only for scrensize above 960px */
    @media screen and (min-width: 961px) {	
    #site-title { 
        padding-top: 20px;
    }
    .site-title a {
        font-family: 'FrederickatheGreatRegular', sans-serif;
        font-size: 54px;
    }
    }

    Regards,
    Sakin

    in reply to: Align Logo on mobile devices #43689
    Sakin
    Keymaster

    Hi Stéphane,

    Once option will be to center the logo and then move the site title and tag line below the logo and center it. SO, you can add in the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (max-width: 960px) {	
    	#site-logo.title-right {
    		display: block;
    		margin: 0 auto;
    		padding-right: 0;
    		text-align: center;
    		width: 100%;
    	}
    	#site-logo.title-right {
    		display: block;
    		margin: 0 auto;
    		padding-right: 0;
    		text-align: center;
    		width: 100%;
    	}
    }

    Regards,
    Sakin

    in reply to: Custom Font #43686
    Sakin
    Keymaster

    Hi Stéphane,

    Using plugin for font is fine. I don’t think there will be any issue if you are using plugin from trusted developers. Anyway, I have added these two font in our future release note.

    Regards,
    Sakin

    in reply to: Site Title and Tagline not centered verticaly #43685
    Sakin
    Keymaster

    @Stephane: I need your site URL to check in how tall image that you have added in. Then I can give you suggestions and solution.

    in reply to: Featured Image takes over the header in posts #43684
    Sakin
    Keymaster

    If you are using Child theme, then there is simple solution. Just go to your child theme and create new file called functions.php and then add the following codes:

    <?php
    /**
     * Catch Evolution Child Theme functions and definitions
     *
     
     */
     /**
     * Header Image
     *
     * Uses Custom Header and Featued Images
     * @Hooked in catchevolution_headercontent
     * @since Catch Evolution 1.0
     */
    function catchevolution_featured_header() { 
    	global $wp_query,$_wp_default_headers;
    	
    	// Header Image
    	$header_image_path = get_header_image();
    
    	if ( get_header_image() ) : ?>
    		<div id="header-image">
    			<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
    		</div>
    	<?php endif; 
    	
    	
    } // catchevolution_featured_header
    in reply to: Remove White Space Above Menu #43683
    Sakin
    Keymaster

    @gareth.milne: Your site in not opening to check in. Please check in and let me know it. Also can you explain detail where you want o justify the text.

    Sakin
    Keymaster

    @natoulie: Can you tell me which line spacing are you talking about.

    About the menu, I don’t understand it. That’s mobile responsive menu. IF you don’t like responsive then you can disable it from “Appearance => Theme Options => Responsive Options”.

Viewing 20 posts - 6,421 through 6,440 (of 14,505 total)