Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@insanelydivine: You cannot change your username but I have changed your nickname. So, now it will display as insanelydivine.
For reducing the width of the sidebar, you need to consider which screensizes you want to reduce for as it’s responsive design. Right not the default is as below. You can change the width as per you need and add it in “Appearance => Theme Options => Custom CSS” box.
#secondary { width: 406px; } @media screen and (max-width: 1224px) { #secondary { width: 340px; } } @media screen and (max-width: 960px) { #secondary { width: 100%; } }To remove the boxes and just add separator line between my content and sidebar, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.hentry, .widget, .no-results, #author-info, #disqus_thread, #content .error404 { border: none; } #primary { border-right: 1px solid #ccc; }Sakin
Keymaster@prius4f: I am confused what are you talking about as the latest version of Catch Mustang is Version 2.2. not 2.8.
Sakin
Keymaster@web-automobile: It’s because of your customization and I cannot track it all to check in details. But I guess I need the following code in header which might be creating issues. Why you have added fb-root div. See the syntax as below.
<!--[if lte IE 8]> <div id="fb-root" style="width: 90;"></div> <!--<![endif]-->Sakin
Keymaster@jen: I just talked with my sales and asked to fix your account issues. You can directly contact our Sales and Account department at http://catchthemes.com/contact-us for any of the sales issues.
Sakin
Keymaster@fastfun: Catch Mustang theme is Translation ready theme where you will find catchmustang.pot files in languages directory. But I am not sure about the plugin how they use translation. You need to ask in that plugin support forum.
About the Color Options in Theme Options panel, you have basic color options. But if you want to change in details then you can post it in this support forum with your site URL and then I can provide you the CSS to add in your “Appearance => Theme Options => Custom CSS” box.
Sakin
Keymaster@swapnaranjitanayak: Post cannot have page template. But if you trying to add the author functions to your posts then you can build child theme and then copy the function
simplecatch_loop()in your child theme functions.php file and add it.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.
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
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; }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.
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; }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.
Sakin
Keymaster@web-automobile: What is your issue? Please let me know with your site URL.
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; }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
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; }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.
-
AuthorPosts
