Forum Replies Created

Viewing 20 posts - 4,361 through 4,380 (of 14,509 total)
  • Author
    Posts
  • in reply to: Featured Slider Question #54809
    Sakin
    Keymaster

    @delboorman: Do you mean to remove Read More from Latest News articles in homepage. Then you can add the following css in “Appearance => Theme Options => Custom CSS” box to hide it:

    .latest-news-holder .more-link { display: none; }

    in reply to: logo size & static front page #54788
    Sakin
    Keymaster

    @JWBeach: Yes, I guess. Let me know If I need to help you directly. Thanks 🙂

    in reply to: How to make a submemu? #54787
    Sakin
    Keymaster

    @Xianmin: For menu, you can build custom menu as per your need from “Appearance => Menus”. Then you can assign menu location as Primary menu from “Appearance => Menus => Manage Locations”. But if you want to add in your sidebar then you can go to “Appearance => Widgets” and add Custom Menu to your Primary sidebar and so on. For more about Custom Menu, check out http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: Display second tagline #54786
    Sakin
    Keymaster

    @AlanF: Site tagline is controlled by WordPress Core and this falls under plugin territory. So, you can either search for plugin to do it or you can build child theme of Catch Box. For child theme check out http://catchthemes.com/blog/create-child-theme-wordpress/. Then in your child theme, copy function catchbox_header_details() in your child theme functions.php file. For example, the following code, where I have added in <br /> code and text.

    /**
     * Template for Header Details
     *
     * @since Catch Box 2.5
     */
    function catchbox_header_details() { 
    
    	// Check to see if the header image has been removed
    	global $_wp_default_headers;
    	$header_image = get_header_image();
    	if ( ! empty( $header_image ) ) : 
         	echo '<div id="hgroup" class="site-details with-logo">';
    	else :
        	echo '<div id="hgroup" class="site-details">';     
    	endif; // end check for removed header image  ?>
     
       		<h1 id="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
           	<h2 id="site-description"><?php bloginfo( 'description' ); ?><br />Add your new text</h2>
       	</div><!-- #hgroup -->   
    
    <?php
    }
    in reply to: Change background color of title on homepage #54785
    Sakin
    Keymaster

    @Gunter: Woohoo thanks 🙂

    in reply to: Logo Not aligned when not in full screen #54784
    Sakin
    Keymaster

    @pixelartists: For Catch Flames Pro theme, you can adjust the maximum height in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 940px) {
    	#branding img { max-height: 45px; }
    }
    in reply to: logo size & static front page #54764
    Sakin
    Keymaster

    @JWBeach: If you make the logo large then you need to add more content in your static page About. We are in the process of update with this issue to be fixed in small content and large logo.

    in reply to: left align footer headers #54763
    Sakin
    Keymaster

    @afeauto: It’s from the following css in your “Appearance => Theme Options => Custom CSS” box. In the following css you need to remove text-align.
    #supplementary h4 { font-family: 'Sheila'; font-size: 26px; text-align: center; }

    Replace the above css with the following:
    #supplementary h4 { font-family: 'Sheila'; font-size: 26px; }

    in reply to: Logo Not aligned when not in full screen #54762
    Sakin
    Keymaster

    @pixelartists: Post in your site URL and let me know what you want to do it in your mobile devices. Any preferred size.

    in reply to: Homepage Menu Not Syncing With Back End #54760
    Sakin
    Keymaster

    @michellebergmann:
    1. You can use 2 columns gallery instead of 3 columns. If you don’t like this then you might want to use “Jetpack plugin” and activate it’s “Tiled Galleries” and “Carousel” module
    2. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    p { margin-bottom: 20px; }
    3. For Contact US, you need to create Page not post. So, delete that contact us post and add it in Contact Us page.

    in reply to: change slider text box #54758
    Sakin
    Keymaster

    @Schelbert: The reference site you gave has different design. You might want to check in Adventurous Pro theme and Full Frame Pro theme for this.

    in reply to: The slideshow order random? #54757
    Sakin
    Keymaster

    @Mattias: Sorry there is no option for random by default.

    in reply to: Featured Slider Question #54756
    Sakin
    Keymaster

    @delboorman: post in your site URL so that I can check and will send you css to hide it.

    Sakin
    Keymaster

    @Michael: This is not theme issue. So, you might want to check with your server. There are chances of:
    1. Your WordPress update issue so you might want to reload it. So, go to “Dashboard => Updates” and then click on “Re-install Now”
    2. Then if this doesn’t solve then try disabling plugin one by one as there might be plugin conflict.

    in reply to: Change background color of title on homepage #54753
    Sakin
    Keymaster

    @Gunter: Custom CSS will not make your site done. It’s just design change and no coding. So, if you have edited core theme files or any plugin update then this might be issue.

    So, if you have FTP/Control panel access then try changing the name of plugin folder so it reset all plugin.

    in reply to: alignment page #54752
    Sakin
    Keymaster

    @Andrea: Woohoo you solve it yourself. That’s nice and thanks for sharing 🙂

    in reply to: Changing Font Sizes #54751
    Sakin
    Keymaster

    @Justyna: You are using Catch Everest Pro theme and posting it in Catch Base Theme Support forum that is why the above css is not working. For Catch Everest Pro theme support forum, please use http://catchthemes.com/support-forum/forum/catch-everest-pro-premium/

    For now, I will answer it here. For Catch Everest Pro font size you can use the following css:

    @media screen and (min-width: 990px) {
        /* Content/default body font size */
        body, button, input, select, textarea { 
            font-size: 15px; 
        }
        /* H1 to h6 heading font size */
        .entry-content h1 {
    	font-size: 30px;
        }
        .entry-content h2 {
    	font-size: 28px;
        }
        .entry-content h3 {
    	font-size: 24px;
        }
        .entry-content h4 {
    	font-size: 20px;
        }
        .entry-content h5 {
    	font-size: 18px;
        }
        .entry-content h6 {
    	font-size: 16px;
        }
        /* Page title, promotion headline, featured content headline sizes */
        .entry-title, #promotion-message h2, #featured-content #featured-heading {
            font-size: 30px;
        }
    }
    in reply to: Changing Polylang switcher widget display #54750
    Sakin
    Keymaster

    @Steve: that’s nice 🙂

    in reply to: Questions theme #54713
    Sakin
    Keymaster

    @chochonet:
    1. Color of menu and sub-menu can be changes easily from “Appearance => Customize => Color Options”. But in free version, you need to add in manually using custom css or child theme style.css. For free version, let me know which color are you trying to change it.

    2. For space above menu, you can adjust the padding in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options”
    #masthead { padding: 20px 0; }

    in reply to: logo size & static front page #54712
    Sakin
    Keymaster

    @JWBeach: I see that you have changes style.css and edit the height of it which is causing script issue. Can you restore the height of logo in your style.css and it should work fine.

Viewing 20 posts - 4,361 through 4,380 (of 14,509 total)