Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@gantier: If you want to change the image in demo, you’ll need to create a child theme and override the demo slider function and change the image url to your custom image you want. But if you are trying to have custom image of your own in the slider, I recommend you to upgrade to Pro version. Pro version has features to add custom image and text in the slider.
Regards,
MaheshMahesh
Participant@valdibeer: Its the Mobile top menu items. As your site is loading a bit slow, it appears at the bottom for a while. Does the same happens in our demo too? Let me know further.
https://catchthemes.com/demo/catch-flames/Regards,
MaheshJanuary 31, 2017 at 9:32 am in reply to: Clean Business pro child theme add new area in customizer #108419Mahesh
Participant@shahid84: You can add the additional option to the customizer via child theme as below. Add the following codes in your child theme’s
functions.phpfile.function clean_business_child_customize_register( $wp_customize ) { $wp_customize->add_section( 'my_section', array( 'description' => esc_html__( 'This Is My Custom Section', 'clean-business-pro' ), 'priority' => 105, 'title' => esc_html__( 'My Section', 'clean-business-pro' ), ) ); $wp_customize->add_setting( 'some_field', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( 'some_field', array( 'label' => esc_html__( 'Some Text Field', 'clean-business-pro' ), 'section' => 'my_section', 'settings' => 'some_field', 'type' => 'text', ) ); } add_action( 'customize_register', 'clean_business_child_customize_register' );If you are not familiar with this or coding, I recommend you to hire a customizer.
Regards,
MaheshMahesh
Participant@floh: I checked your site and the title and normal text are using same font. But if you want to change to another font, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
body, .entry-title { font-family: Times New Roman; }Note: Please change the font family as you desire.
Regards,
MaheshMahesh
Participant@floh: Can you please provide me the url of the page for reference.
Regards,
MaheshMahesh
Participant@candice: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.site-content { background-color: transparent; }Regards,
MaheshMahesh
Participant@lena: Go to Dashboard=> Appearance=> Customize=> Customize=> Additional CSS box and add the following CSS:
.two-columns #primary { width: 80%; } .two-columns #secondary { width: 19%; }Regards,
MaheshMahesh
Participant@candice: Glad to know you’ve managed it. Thank you for you appreciation. Have a nice day!
Regards,
MaheshMahesh
Participant@cableman145: Are you using any plugins? If yes, please try disabling it and check again. Found no such issue on our server. Please check the demo.
https://catchthemes.com/demo/parallax-frame/
Let me know further.Regards,
MaheshMahesh
Participant@qetellocaro: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
@media screen and (min-width: 991px){ #masthead { position: relative; } .sidebar-header-right { position: absolute; top: 0; right: 50px; } #search-toggle { position: absolute; top: -151px; right: 0; background-color: #000; } #search-toggle:hover { background-color: #000; color: #fff; } } @media screen and (min-width: 991px) and (max-width: 1100px) { #search-toggle { top: -122px; } } @media screen and (min-width: 1101px) and (max-width: 1151px) { #search-toggle { top: -132px; } } @media screen and (min-width: 1152px) and (max-width: 1280px) { #search-toggle { top: -138px; } }Regards,
MaheshMahesh
Participant@candice: Which theme are you using? I just checked your site, you are using a different theme. Let me know further.
Regards,
MaheshMahesh
Participant@azeaka: Go to Dashboard=> Appearance=> Add/Edit posts, click Screen Options on the left top just beside the Help button. So options scroll down. Check on Discussion checkbox. Then scroll down to Discussion options and check on Allow Comments checkbox. Then click save/update.
Regards,
MaheshJanuary 30, 2017 at 10:19 am in reply to: Files under inc/ directory in my child theme not working when I edit them #108309Mahesh
Participant@thewebmistress: This is not possible. However, you can modify the function by copying it to child theme’s
functions.phpand override it. Hope you understand.Regards,
MaheshMahesh
Participant@kejpa: You’ll need to add the following code where you display the custom posts.
<?php catchbase_entry_meta(); ?>Regards,
MaheshMahesh
Participant@mailhunter: The menu script has been modified, sidr menu is no longer in use, so you won’t have this problem anymore. The update will be released soon.
Regards,
MaheshMahesh
Participant@candice: Please post in your site url. And where actually do you want the transparency. Let me know further.
Regards,
MaheshMahesh
Participant@barbyma31: I don’t quite understand. Can you please clarify more.
Regards,
MaheshMahesh
Participant@novaglenn: Where actually have you put the CSS? I checked your site and didn’t find the CSS code.
Regards,
MaheshMahesh
Participant@bmhamdanigmail-com: The theme support Contact Form 7 very well. I checked on our server and it worked fine. May be some other plugins is causing the issue. Or may be the custom CSS is causing the issue.
Regards,
Mahesh -
AuthorPosts
