Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@tkabe: Child theme for Catch Everest Free version will not work instantly with Catch Everest Pro theme. In you current child theme for Catch Everest style.css you need to change the following:
Template: catch-everest
To
Template: catch-everest-pro
and
@import url("../catch-everest/style.css");
to
@import url("../catch-everest-pro/style.css");Sakin
Keymaster@nch: Sorry I don’t get it what you mean. Can you explain in reference with your site URL. See the theme instruction page http://catchthemes.com/theme-instructions/catch-everest/ where you can find Image Sizes.
Sakin
Keymaster@MVS: Catch Everest Free theme doesn’t have Header Right Sidebar to add in the code. So, you need to build child theme and add it through child theme functions.php file with action hook.
Sakin
Keymaster@rosavittoria: Not sure about that. You can download the plugin from http://wordpress.org/plugins/ and check in. Can you try in Jetpack plugin Sharing module.
Sakin
Keymaster@Juraj: You can just add the Image Title in your Featured Image Slider Options for image alt tag and then you can hide the slider text by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
#slider .featured-text { display: none; }Sakin
Keymaster@cperera1978: Where did you got that script from. It’s conflicting script.
Sakin
Keymaster@nadaadehn: If you don’t like select box in responsive menu and want it like in your desktop view. Then you can build child then and then copy catchbox_scripts_method() function and delete the following code
//Responsive Menu wp_register_script('catchbox-menu', get_template_directory_uri() . '/js/catchbox-menu.min.js', array('jquery'), '1.1.0', true); wp_register_script('catchbox-allmenu', get_template_directory_uri() . '/js/catchbox-allmenu-min.js', array('jquery'), '201301503', true); //Check is secondayand footer menu is enable or not $options = catchbox_get_theme_options(); if ( !empty ($options ['enable_menus'] ) ) : wp_enqueue_script( 'catchbox-allmenu' ); else : wp_enqueue_script( 'catchbox-menu' ); endif;Then add the following css in your child theme style.css file or in “Appearance => Theme Options => Custom CSS” box.
@media screen and (max-width: 960px) { #branding ul.menu { display: block; } }Sakin
Keymaster@Copatka: I see that you are using mqtranslate plugin for multilingual. So, you can post in the plugin support forum. You can check this forum thread
http://wordpress.org/support/topic/mqtranslate-not-working-in-widgets?replies=4Sakin
Keymaster@Sheree: For spacing, you can add the following css in “Appearance => Theme Options => Custom CSS” box.
@media screen and (min-width: 961px) { #primary { padding-left: 2%; width: 63.64%; } #secondary { width: 29.28%; } } @media screen and (max-width: 960px) { #primary, #secondary, .contact #primary, .contact #secondary { width: 96%; padding: 0 2%; } }For the Slider image, you can use “Featured Image Slider” and upload the image of your own choice. so, first you can crop the image as per your need using photo editing software like Photoshop, Photo Editor and so on. Then upload it.
Sakin
Keymaster@MVS: The Alt tag in the Featured Post slider image uses the Post Title. You can check the source in your site.
Sakin
Keymaster@Melih: That is not possible with the custom css. This is very rare case and you need to add in JS file to do this. Sorry this is very complicated and you need to hire customizer to work on it. Menu justification is not common in Websites.
Sakin
Keymaster@nadaadehn: Please post in your site URL.
Sakin
Keymaster@aroma-bobman: Zoom in feature in mobile devices has been disabled. Yes, that responsive design code. We will be adding option to enable/disable in Theme Options panel in next version update schedule to release by 1st of April 2014. So, either you can wait or build child theme and modify the feature for now.
Sakin
Keymaster@aroma-bobman: It will be released by 1st of April. We are waiting for final reviews.
Sakin
Keymaster@buscando-soluciones: Which theme are you using it.
Sakin
Keymaster@vstratis: For Facebook Open graph and SEO, we recommend WordPress SEO by Yoast plugin. I see the you have already added image http://www.anexartitoi.eu/wp-content/uploads/2014/03/LOGO2.jpg as og:image. So, when I share you site, it is showing the same image. It’s not blank.
You can test using Facebook Debug tool: https://developers.facebook.com/tools/debug/
See this https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.anexartitoi.eu%2F
Sakin
Keymaster@finnn: Just create empty functions.php file in your child theme and add the following code in that functions.php file.
<?php function catchbox_child_hometext() { if ( is_home() ) { echo '<header class="page-header"><h1 class="page-title">News</h1></header>'; } } add_action( 'catchbox_content', 'catchbox_child_hometext', 15 );Sakin
Keymaster@henry2014: this theme has option to upload one “header image” and another “logo image”. You can add header image from “Appearance => Header” and you can add logo image from “Appearance => Theme Options => Header Options => Logo URL”.
Header text and logo image will have link to your homepage but not header image.
Sakin
Keymaster@henry2014: About white areas at the top. It’s from your header image itself. See your header image http://guwli.georgetown.edu/wp-content/uploads/2014/03/cropped-header-logo.png , it has white spaces.
About the link, you cannot add link in header image, You need to add this image as logo.
Sakin
Keymaster@tkabe: Header map will not work properly as this is responsive design theme and the position changes as per the screen size.
The best option is to upgrade To Catch Everest Pro theme and add the image from “Appearance => Widgets” to header top sidebar.
But for Catch Everest Free theme, you need to build child theme and created functions.php file in your child theme and add the following code
<?php function catcheverest_child_headerimage() { echo '<a href="http://calprogramsautistic.org/support/2014_fundraiser/" title="Fund Raiser" class="fund-raiser"><img src="http://calprogramsautistic.org/wp-content/uploads/2014/03/copy-CPA_header_fundraiser.jpg" title="Fund Raiser" /></a>'; } add_action( 'catcheverest_hgroup_wrap', 'catcheverest_child_headerimage', 5 ); -
AuthorPosts
