Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Amanda: Please post in your site URL and then I can check in. Your widget should display fine. It should show all.
Sakin
Keymaster@skendall: I adventurous pro theme, if you want Full Width content without sidebar then go to “Appearance => Theme Options => Layout Options => Sidebar Layout Options” and then select “No Sidebar, Full Width”.
Then to hide the page titles, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.page .entry-header { display: none; }Note: when you post in support question. Please post in your site URL so that I can check your site and understand your requirement.
Sakin
Keymaster@Kim: which actual text are you taking about, if it’s general default text size then you can adjust it by adding in the following css in Custom CSS box:
body, input, textarea { font-size: 15px; line-height: 1.62em; }Sakin
Keymaster@Albert: Do you mean photo in Gravatar is link with your email address. So, you first need to add in your email address in https://en.gravatar.com/ and then it will display it.
Sakin
Keymaster@SeekingEscape: Sorry I don’t get it what you want. It’s better if you have any decided width for your site. If it’s in percentage then you can just write simple css as:
@media screen and (min-width: 981px) { #primary { width: 75%; } #secondary { width: 23%; } }But if you have fixed width in px, then you need to add long responsive css as per the device width.
Sakin
Keymaster@heather: Sorry this is beyond by support and I guess you need to hire cutomizer to work on it.
Sakin
Keymaster@Kev0192: ok then please replace previous css with the following css:
#content, #main, #site-generator { background-color: transparent; }Sakin
Keymaster@bfischer: ok now I see that you have added in Custom Menu widget to your sidebar but you haven’t assign any menu as Primary menu. So, just go to “Appearance => Menus => Manage Locations” and then assign menu to Primary menu.
As right now, mobile menu is taking default page menu where as your sidebar have custom menu.
Sakin
Keymaster@Hair Bear: Sorry I cannot check in before theme gets live. Tell him to make test site live.
Sakin
Keymaster@Harry: Looks like you had customize Catch Box Free theme, as we don’t have support for Breadcrumb in both free and pro version. We are adding it in next version update which will be released soon. It’s under final testing.
For now, you can add the following code in
functions.phpfile:if ( ! function_exists( 'catchbox_breadcrumb_display' ) ) : /** * Display breadcrumb on header */ function catchbox_breadcrumb_display() { if ( function_exists( 'yoast_breadcrumb' ) ) { echo '<div class="breadcrumbs wpseoyoast">'; yoast_breadcrumb(); echo '</div><!-- .wpseoyoast -->'; } elseif ( function_exists( 'bcn_display' ) ) { echo '<div class="breadcrumbs breadcrumbnavxt" xmlns:v="http://rdf.data-vocabulary.org/#">'; bcn_display(); echo '</div><!-- .breadcrumbnavxt -->'; } } endif; // catchbox_breadcrumb_display add_action( 'catchbox_content', 'catchbox_breadcrumb_display', 20 );Sakin
Keymaster@roche5000: Nice. Thanks 🙂
Sakin
Keymaster@CJSwanepoel: Sorry no option to do that from Theme. You might want to try plugin like lazy loader and w3 total cache and son on.
Sakin
Keymaster@marcodimi: Check if there is minify and combine option in Wp Super Cache plugin or other plugin. Nothing much to do from theme.
Sakin
Keymaster@polack47: Sorry there is no option for that. You can just make that text to right from custom css. Maybe you can to try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
#main-slider .entry-container { right: 0; }Sakin
Keymaster@mityo: Have you customize any files/folder inside
catch-evolution. If so then you need to revert that back. But if you haven’t change then, please check in your plugin. It might be plugin issue. So, try disabling plugin one by one. You need to have menu like this http://catchthemes.com/demo/catch-evolution/About the menu in two like, it because of your custom css padding left. Please find the following css in your custom css and remove it.
#header-menu ul.menu { padding-left: 160px; }Sakin
Keymaster@Intergame: Child theme in necessary only then you are doing high level of customization. Like if you want to add/edit functions or add/edit any files in ‘adventurous’ theme folder. Customization like style can be done with just custom css box. But if you want to start child theme, then refer to http://catchthemes.com/blog/create-child-theme-wordpress/
To remove auto hyphens, you need to add the following css in “Appearance => Theme Options => Custom CSS” box:
#content article { -webkit-hyphens: manual; -moz-hyphens: manual; hyphens: manual; }Sakin
Keymaster@Hair Bear: Can you post in your friend site URL.
Basically for this, you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/
Then remove slider by adding the following code in your child theme functions.php
// Unhook default Adventurous functions function unhook_adventurous_functions() { remove_action( 'adventurous_before_main', 'adventurous_slider_display', 40 ); } add_action( 'init', 'unhook_adventurous_functions' );Then you can hook it in the position you like. Like below:
//Adding Slider Image in main content box add_action( 'adventurous_content_sidebar', 'adventurous_slider_display', 40 );Or you can simply call the function.
Sakin
Keymaster@Kim: In the following css, you can increase the padding as per your need and then add it in Custom CSS box:
@media screen and (min-width: 940px) { #header-menu ul.menu a, #footer-menu ul.menu a { padding-left: 20px; padding-right: 20px; } }Sakin
Keymaster@Shawn: That menu width is 1200px width. Also you can see in our theme instructions page about recommended image sizes http://catchthemes.com/theme-instructions/catch-responsive-pro/#featured-image
-
AuthorPosts
