Forum Replies Created

Viewing 20 posts - 9,521 through 9,540 (of 14,504 total)
  • Author
    Posts
  • 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.

    in reply to: Remove "posted by…" mention at bottom of the post #17832
    Sakin
    Keymaster

    @Sihedow: That cannot be remove from CSS. You can remove the whole like if you want. But if you just want to remove the author then you need to build child theme and then copy content-single.php file to your child theme and delete the following from the code line no 47.
    by <a href="%6$s">%5$s</a>

    Note: I see that you are using Catch Box Free version and you are not allowed to change Catch Box name from the footer. This is the only recognition that we gt for free theme and free support. If you really want to remove that then use Catch Box Pro version.

    Thanks.

    in reply to: Can't choose sidebar page template on posts page (blog) #17831
    Sakin
    Keymaster

    `@janetSchaper: You can’t specify sidebar in Post page set as it will take take Optional Archive Sidebar and if that is empty then main sidebar.

    I see that you have added the following CSS to hide the page title
    .page .entry-header { display: none; }

    To overwrite the css to hide the title and to just show the title on blog page, you need to add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .page.page-blog .entry-header { display: block; }

    in reply to: Remove "posted by…" mention at bottom of the post #17825
    Sakin
    Keymaster

    @Sihedow: Sorry I cannot find it where is it in your site.

    in reply to: UPDATING THEME #17824
    Sakin
    Keymaster

    @egnalc: It’s mention in theme instruction page http://catchthemes.com/theme-instructions/catch-mustang/ that you need to first activate any other theme such as Catch Box and then delete your existing Catch Mustang theme from “Appearance => Themes”. Then you can install your fresh copy of theme.

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

    @Dirk: That is why I am telling you to create your own custom menu from “Appearance => Menus”, from here you can click on pages, category or add custom links as per you wish and then also use drag and drop from your mouse to change the position. See this http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: Can't Remove "wordpress" from URL #17822
    Sakin
    Keymaster

    @Kevin: I see that you have installed your WordPress site in wordpress1 directory. So, first you need to move all the files and folder from wordpress1 directory to your root directory. Then you need to do search and replace your database to replace the url http://bluestreakonline.com/wordpress1 with http://bluestreakonline.com . For search and replace you can use the script http://interconnectit.com/products/search-and-replace-for-wordpress-databases/

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