Forum Replies Created

Viewing 20 posts - 9,521 through 9,540 (of 14,510 total)
  • Author
    Posts
  • in reply to: Various issues – please help #17917
    Sakin
    Keymaster

    @Ally: Here goes the solution to your issues.
    1) You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #sidebar-header .widget.widget_text {
        padding-top: 65px;
        text-align: right;
    }
    @media screen and (max-width: 767px) {
    #sidebar-header .widget.widget_text {
        padding-top: 0;
    }
    }

    2) Once you active the header right sidebar, that option will be replaced by Header Right Sidebar. So, you need to add “10. Catchthemes: Search Form” Widget from “Appearance => Widgets” to Header Right Sidebar.

    3) Once you active the header right sidebar. You need to add “1. Catchthemes: Social Icons” widgets from “Appearance => Widgets” to Header Right Sidebar.

    4) That is the way the Catch Mustang theme is designed. It’s there to facilitate “Header Title and Header Description” that you add in your post and page through “Header Title and Description” meta boxes.

    in reply to: trying to upgrade #17915
    Sakin
    Keymaster

    @prayer0house: You should be able to download the zip file form your account at http://catchthemes.com/my-account . If you have any sales and account issue then you can contact our sales and account section directly at http://catchthemes.com/contact-us

    in reply to: remove comments #17913
    Sakin
    Keymaster

    @Rod: Please update to latest version 1.3 and you will get that option.

    in reply to: Adding Featured Image #17907
    Sakin
    Keymaster

    @rgidon: You can edit or create new post or page. Then in your post editor you can upload the image then you will see option to set featured image. See this screenshot http://www.pinterest.com/pin/548594798329948788/ and details at http://en.support.wordpress.com/featured-images/#setting-a-featured-image

    If you want to hide the title only in pages then you need to add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .page .entry-header { display: none; }

    in reply to: install upgrade to pro #17906
    Sakin
    Keymaster

    @Rod: Please check out the Theme Instruction for Catch Evolution Pro theme at http://catchthemes.com/theme-instructions/catch-evolution-pro/.

    If you still have issue with upgrade then do let me know it and I can help you with upgrade.

    in reply to: search field on my header #17878
    Sakin
    Keymaster

    @web-automobile: Sorry I don’t know how was your header right search. If you are talking about the white background then you can make it transparent by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .sidebar-top .widget { background-color: transparent; }

    in reply to: Font Styles #17875
    Sakin
    Keymaster

    @calvinocampo123: Because you are using same default font. If you are try to change to Lobster then it will like

    .entry-title { font-family: Lobster, Arial, sans-serif; }

    But the code will only work in the computer which has Lobster font. So, better will be to add Google Web font for lobster and add it. Or just upgrade to pro version.

    in reply to: search field on my header #17874
    Sakin
    Keymaster

    @web-automobile: What is your issue? Please let me know with your site URL.

    in reply to: Slider in header #17873
    Sakin
    Keymaster

    @Betty: It’s complicated. To position the slider in header you need to use action hooks. You need to build child theme and then add the following php code in your child theme functions.php file

    /**
     * Display slider
     */
    function catchevolution_slider_display() {
    	global $post, $wp_query, $catchevolution_options_settings;
        
    	// get data value from theme options
    	$options = $catchevolution_options_settings;
    	$enableslider = $options[ 'enable_slider' ];
    	$sliderselect = $options[ 'select_slider_type' ];
    	$sliderlayout = $options[ 'select_slider_layout' ];
    	
    	// Front page displays in Reading Settings
    	$page_on_front = get_option('page_on_front') ;
    	$page_for_posts = get_option('page_for_posts'); 	
    		
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();	
    	
    	if ( ( $enableslider == 'enable-slider-allpage' ) || ( ( is_front_page() || ( is_home() && $page_id != $page_for_posts ) ) && $enableslider == 'enable-slider-homepage' ) ) :
    	
    		// Select Slider
    		if ( $sliderselect =='image-slider' && !empty( $options[ 'featured_image_slider_image' ] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_imagesliders' ) ) {
    			add_action( 'catchevolution_before_contentsidebarwrap', 'catchevolution_imagesliders', 15 );
    		}	
    		elseif ( $sliderselect =='post-slider' && !empty( $options[ 'featured_slider' ] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_sliders' ) ) {
    			add_action( 'catchevolution_after_headercontent', 'catchevolution_sliders', 15 );
    		}
    		elseif ( $sliderselect =='page-slider' && !empty( $options[ 'featured_slider_page' ] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_page_sliders' ) ) {
    			add_action( 'catchevolution_after_headercontent', 'catchevolution_page_sliders', 15 );
    		}		
    		elseif ( $sliderselect =='category-slider' && !empty( $options[ 'slider_category' ] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_category_sliders' ) ) {
    			add_action( 'catchevolution_after_headercontent', 'catchevolution_category_sliders', 15 );
    		}		
    		elseif ( $sliderselect =='image-slider' && !empty( $options[ 'featured_image_slider_image' ] ) && function_exists( 'catchevolution_imagesliders' ) ) {
    			add_action( 'catchevolution_content', 'catchevolution_imagesliders', 10 );
    		}
    		elseif ( $sliderselect == 'post-slider' && !empty( $options[ 'featured_slider' ] ) && function_exists( 'catchevolution_sliders' ) ) {
    			add_action( 'catchevolution_content', 'catchevolution_sliders', 10 );
    		}
    		elseif ( $sliderselect =='page-slider' && !empty( $options[ 'featured_slider_page' ] ) && function_exists( 'catchevolution_page_sliders' ) ) {
    			add_action( 'catchevolution_content', 'catchevolution_page_sliders', 10 );
    		}
    		elseif ( $sliderselect == 'category-slider' && !empty( $options[ 'slider_category' ] ) && function_exists( 'catchevolution_category_sliders' ) ) {
    			add_action( 'catchevolution_content', 'catchevolution_category_sliders', 10 );
    		}
    		else {
    			add_action( 'catchevolution_content', 'catchevolution_default_sliders', 10 );
    		}
    		
    	endif;
    	
    }
    in reply to: Menu order with categories #17862
    Sakin
    Keymaster

    @Dirk: There is only one menu that you can use in this theme. There is no Secondary and footer menu.

    I don’t know why you are not getting me. You can add the Sub-menus as per your wish and also arrange as per your wish with your mouse drag and drop. See this custom menu with submenus https://dl.dropboxusercontent.com/u/81234910/Custom%20Menu.png . After you create menu you need to assign menu. See this how I have assign menu https://dl.dropboxusercontent.com/u/81234910/Menu%20Location.png

    in reply to: Fonts & Line spacing #17861
    Sakin
    Keymaster

    @OtaKii: For line height you can add the following CSS in “Appearnace => Theme Options => Custom CSS” box.
    #main { line-height: 1em; }

    But for font-family, if you are using web safe font then it’s fine otherwise either you need to upgrade to pro version or search for font plugins.

    body, input, textarea {
        font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    }
    in reply to: Remove "posted by…" mention at bottom of the post #17860
    Sakin
    Keymaster

    @Sihedow: Thanks for adding back Catch Box name. Cheers 🙂

    in reply to: Website on mobile device issues #17859
    Sakin
    Keymaster

    @Joaozinho: Can you add that CSS in “Custom CSS” box and let me know it. As I don’t see that css in your custom CSS box. If you have already added in Custom CSS box then it might be cache. So, you might need to clear your Cache from WP Super Cache plugin.

    in reply to: Changing sidebar and content width #17858
    Sakin
    Keymaster

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

    #content.col8 { width: 784px; border: 1px solid #bbb; }
    #sidebar.col4 { width: 163px; }
    in reply to: Entire homepage visible/Site Title Positioning #17857
    Sakin
    Keymaster

    @pchambers: Sorry your question no 1 cannot be achieved with CSS and about 2. I don’t quite understand it. You site title in inline with your logo as you have added the CSS to do that from your Custom CSS box. So, I don’t get it why again you want it back.

    in reply to: Font Styles #17856
    Sakin
    Keymaster

    For page title and All Capital Letters add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .entry-title { font-family: Arial,Helvetica,sans-serif; text-transform: uppercase; }

    in reply to: Font Styles #17841
    Sakin
    Keymaster

    @calvinocampo123: You can add the CSS like below to change the font for header menu.
    #header-menu { font-family: Arial,Helvetica,sans-serif; }

    in reply to: Replace Homepage completely? #17840
    Sakin
    Keymaster

    @Felix: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide it.
    .home .entry-header .entry-meta { display: none; }

    in reply to: Menu order with categories #17834
    Sakin
    Keymaster

    @Dirk: Sorry I don’t get you. Yes you can upload the screenshot in your site and send me the screenshot URL.

    As per my instruction, I mean you can add any number of items in your single menu from “Appearance => Menus”. You don’t need to create different sets of menus. Just create single set of menu where you can add pages, categories and custom links. And yes for the position like “Infos” in front of Contact. You can use your mouse and drag the Info page at top then Contact and it will be fine. See this video http://www.youtube.com/watch?v=KjQfCx0zY6A

    in reply to: can't make my sidebar width narrower #17833
    Sakin
    Keymaster

    @insanelydesign: Then check in your suite URL that you have posted. It’s not published. I cannot see it. It shows be godaddy hosting ads.

Viewing 20 posts - 9,521 through 9,540 (of 14,510 total)