Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@cableman145: Please try changing the theme to WordPress default themes and check if the issue persist. If the issue persist in other themes too, this is not a theme issue. If everything works fine in default theme, please try doing a clean reinstall of the theme and check again. Let me know if the problem persists.
Regards,
MaheshMahesh
Participant@floh: Can you please let me know where is folder and flyer text? The body font is set to
sans-serif. Let me know further.Regards,
MaheshMahesh
Participant@catwingz: Go to Dashbaord=> Appearance=> Customize=> Theme Option=> Custom CSS box and add the following CSS:
@media screen and (max-width: 767px) { #site-logo .custom-logo-link { display: none; } #site-logo { background-image: url('http://integrationmassage.com/wp-content/uploads/2016/02/stacked-logo-banner-2.jpg'); height: 130px; background-size: cover; background-repeat: no-repeat; } }Note: Please change the image url as desired.
Regards,
MaheshMahesh
Participant@hellohillory: Its because of the bigger text size in the header. Go to Dashboard=> Appearance=> Customize=> Additional CSS and add the following CSS:
@media screen and (max-width: 420px) { #header-featured-image .entry-title { font-size: 20px; } }The above CSS will decrease the font-size in devices with max-width 420px. Let me know if any problem.
Regards,
MaheshMahesh
Participant@cranburypl: Just checked your site and the primary menu is displaying fine. Let me know if any problem.
@malodk02: Glad to know your problem is fixed.Regards,
MaheshMahesh
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,
Mahesh -
AuthorPosts
