Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@PeripheralVision: You can just go to “Appearance => Customize => Featured Slider Options => Featured Slider Type”, and select “Featured Page Slider”, then select the page in Featured Page # 1, #2, #3 and so on which you want to show as slider. This will replace the demo slider.
For more information, check out Full Frame Theme instructions at http://catchthemes.com/theme-instructions/full-frame/
Sakin
Keymaster@ghostzapper: It depends on the slider code for the template/php functions. So, first you need to build child theme. For Child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/
Then you can add the following code in your child theme functions.php file. In the following replace your shortcode
[huge_it_portfolio id=N]with your shortcode/** * Add Huge Slider. * * @uses action hook catchbase_before_content. * */ function catchbase_huge_slider() { echo do_shortcode([huge_it_portfolio id=N]); } add_action( 'catchbase_before_content', 'catchbase_huge_slider', 10 );March 26, 2015 at 4:06 pm in reply to: Making site title to stay there and menu to appear when click on toggle. #54388Sakin
Keymaster@nakulsachdeva: First you need to update Catch Flame Pro to latest version 2.1. For that you can download the your theme zip file from your account at http://catchthemes.com/my-account. Then install the plugin Catch Updater if you want to update from WordPress Dashboard. For more about Catch Updater and it’s instruction, check out http://catchthemes.com/wp-plugins/catch-updater/
After you update to latest version, your can go to check this theme instructions on http://catchthemes.com/theme-instructions/full-frame-pro/#disable-header-toggle to disable header toggle.
Sakin
Keymaster@vidhi.sam: I check in your site and it’s working. I don’t see that issue. That will show if you have set “Your latest posts” in “Appearance => Customize => Static Front Page” and don’t have any post in your site.
Sakin
Keymaster@Aaron Giles: Ok then just add 2 Featured Page Content and then add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#featured-content .featured-content-wrap .hentry { width: 50%; }Note: Please post in your site url so that I can check in what are you trying to do it.
Sakin
Keymaster@Em Cloney: Ok to remove the menu completely. You can just go to “Appearance => Menus”, and create a new empty menu and then assign that menu to “Primary Menu” from “Appearance => Menus => Manage Locations”. If you find this complicate then alternatively you can simply add the following css in “Appearance => Theme Options => Custom CSS” box:
#branding #access { display: none; }Then to add border, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#branding { border-bottom: 2px solid #1b4266; }Sakin
Keymaster@sweetacres: You can see in our demo the Slider at http://catchthemes.com/demo/catchbox/. It’s same, the only difference is that your featured image in the slider post is small. It should be at 644px width and 320px height. So, please upload the bigger image.
But if you don’t want slider text at all then you can add in the following css in “Appearance => Theme Options => Custom CSS” box:
#slider-wrap .featured-text { display: none; }Sakin
Keymaster@Andrea: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS” box:
#feature-slider .entry-container { display: none; }Sakin
Keymaster@Em Cloney: I am bit confused with your question. Can you send me your site URL so that I can check in and get better Idea of what are you trying to do it
1. If you are trying to hide the page title Home then you can just add the following css in “Appearance => Theme Options => Custom CSS” box:
.home .entry-header { display: none; }2. But if you are trying to hide home from your default page menu, then you need to add the following css in “Appearance => Theme Options => Custom CSS” box:
.menu li { display: none; } .menu li.page_item { display: block; }Sakin
Keymaster@alphaxyz: There is empty header right sidebar. So, just go to “Appearance => Customize => Theme Options => Header Right Sidebar Options” and check the option “Check to disable Header Right Sidebar” and save it.
Sakin
Keymaster@Mark: This is strange. It all should be adjust from “Appearance => Customize”. Can you send me more detail about it so that I can check in. If you want me to check directly in your site and check in then I will be sending you email and you can respond me there.
Also check in your plugin list, there might be conflicting plugin. Did you try in disabling plugin one by one and check in.
Sakin
Keymaster@Omar: For that form width and all you need to play with the following css, as per your need. Adjust the width and all as per your need in various screen size and then add it in “Appearance => Theme Options => Custom CSS” box or in your child theme style.css
#header-content .bbp-login-form { display: block; float: none; margin: 0 auto; width: 335px; } #header-content .bbp-form { display: block; } #header-content .bbp-login-form .bbp-submit-wrapper { margin-right: 20px; } @media screen and (max-width: 1344px) { #header-content .bbp-login-form { width: 335px; } } @media screen and (max-width: 1280px) { #header-content .bbp-login-form { width: 335px; } } @media screen and (max-width: 1152px) { #header-content .bbp-login-form { width: 335px; } } @media screen and (max-width: 1100px) { #header-content .bbp-login-form { width: 335px; } } @media screen and (max-width: 1000px) { #header-content .bbp-login-form { width: 335px; } } @media screen and (max-width: 940px) { #header-content .bbp-login-form { width: 94%; } #header-content .bbp-login-form .bbp-submit-wrapper { margin: 0 auto; } }March 25, 2015 at 8:50 am in reply to: Just for Homepage – Disable Header and Footer Completely #54305Sakin
Keymaster@Omar: Many of the plugin uses hook
<?php wp_head(); ?>which will be there in header.php before<body>tag and hook<?php wp_footer(); ?>which will be there in footer.php after</body>tag. If you homepage template, look like it’s missing<?php wp_footer(); ?>hook for reference check out footer.php file.Sakin
Keymaster@Omar: You can W3 Total Cache plugin installed. So, you need to clear your Cache from W3 Total Cache plugin settings after you make the changes. Your site has green background in all browser and devices. You are experiencing different because of cache. You can change that background color from “Appearance => Theme Options => Color Options => Site Color Options” and click on “Site Background Color”. Change it as per your need and then don’t forget to clear your cache.
Sakin
Keymaster@lisan955: After you remove that you browser will only show responsive element but when you check from mobile devices it shouldn’t who mobile version. It will show as there must be Responsive Style in your style.css. So, you can build child theme and don’t enqueue parent theme style.css and just copy the style.css in yoru child theme before this element
/*-------------------------------------------------------------- Responsive Style --------------------------------------------------------------*/So, everything after this should be deleted.
Sakin
Keymaster@Omar: Sorry, this is beyond the scope of Theme. We are not allowed to modify the core elements of WordPress. So, as I said previous. It falls under plugin territory. You either need to search fro plugin to modify it or you need to create child theme and customize the search
searchform.php -
AuthorPosts
