Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@husker: Yes, it is a part of Customize Section and the file cannot be directly edited from WordPress’s theme-editor page. You’ll need to use FTP, or you can simply add the above function I’ve provided to the child theme’s
functions.phpRegards,
MaheshMahesh
Participant@filip_1:
1. Please add the following CSS:#menu-pocetna .menu-item { width: 16.565%; } #header #mainmenu ul li a { width: 82.5%; }2. Is it possible that some photo stands beside the title ?
Can you please clarify more on this…Regards,
MaheshMahesh
Participant@mark-argentino: We do not use [date] functionality on our theme. You may have been using some shortcode or custom function.
The theme uses [the-year] which displays the current year.Regards,
MaheshMahesh
Participant@vetroartefatto: The funny thing is, http://www.racinelutheran.org/athletics/ is using Adventurous Pro theme. 🙂 Its the same slider.
Regards,
MaheshMahesh
Participant@dreamcatcher: Thank you for using Simple Catch Pro theme. Please post in your site url.
Regards,
MaheshMahesh
Participant@phillycontemporary: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
@media screen and (max-width: 400px) { #feature-slider .entry-title { font-size: 12px; } #feature-slider .entry-content { font-size: 11px; } }Regards,
MaheshMahesh
Participant@krygj390: You are using image within the content. I recommend you to use Featured Content for this this is what you need. Please refer to the following link:
https://catchthemes.com/theme-instructions/catch-responsive-pro/#enable-featured-image-content
Hope this helps. Let me know if any problem.Regards,
MaheshMahesh
Participant@cranburypl: Well there it no limit to number of widgets you want to put in the desired widget area. Please make sure you have put the widget in Main Sidebar widget area. Have you installed any plugins if so, please try disabling it one by one and check if it resolves the issue. Sometimes the plugin may cause issue.
Let me know further.Regards,
MaheshMahesh
Participant@lordinvestor: Well, its because you’ve put it in two different
<p>tags and there is an image in-between. This has to be modified within the content itself. Hope this helps.Regards,
MaheshMahesh
Participant@lordinvestor: Yes, I was able to see it. Its okay. I checked it again, do you mean the gap between the line “fearsome names like Tiger,” and “Panther, Viper and Gorilla”?
Let me know further.Regards,
MaheshMahesh
Participant@vetroartefatto: Sorry but I still didn’t quite get you. You can use any content in Slider, i.e. Posts, Pages, Category or Custom Images. But Featured Content is not the slider, it has a column layout and is totally different from Featured Slider. I checked the above site you’ve mentioned, the Slider is quite similar to the Adventurous Theme.
Let me know further if I can help you further.Regards,
MaheshMahesh
Participant@husker: For that, edit the file in
inc/customizer-includes/catchresponsive-customizer-featured-slider.phpthen go to line 171 and change Max no of slides is 20 to your desired number, this is the description text. Change line 175'max' => 20to your desired number of slider. This is the actual number of slides.
Let me know if any problem.Regards,
MaheshMahesh
Participant@mataiblis: Please add the following CSS:
#masthead { background: url("http://www.kingagen.com/wp-content/uploads/2016/09/Header-bg.jpg") no-repeat scroll 0 0; background-color: none; background-size: cover; } body.custom-background { background: none; background-color: #000; } .site { background-color: transparent; } /* removes the line between footer and featured content */ #site-generator, #footer-menu { border: none; }Regards,
MaheshMahesh
Participant@lordinverstor: Can you please explain further with an image as an example to clarify more so that I can help you.
Regards,
MaheshMahesh
Participant@vetroartefatto: Seems you have currently enabled the slider in Homepage only, there is another option Entire Site, which will display Featured Slider in all pages. If this is whot you mean, go to Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Options and select Entire Site option in Enable Slider drop-down. The one currently displaying is the page’s featured image as Header Image.
Let me know if any problem.Regards,
MaheshMahesh
Participant@arnold: First you are missing
<ul>tags around the list items in your content. Please wrap it around the<ul>tags. I assume you want this only in your content and no other list items. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:.entry-content ul, .entry-content ul li { list-style: none; margin-left: 20px; } .entry-content ul li:before { content: "\00BB \0020"; color: #ff0000; }Note: Please adjust the margin as desired.
Regards,
MaheshMahesh
Participant@mataiblis70: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#masthead { background: url("your_desired_image") no-repeat scroll 0 0; background-color: none; background-position: center; } body.custom-background { background: none; background-color: #000; }Note: Please change your_desired_image in the above code with you desired image url.
Regards,
MaheshMahesh
Participant@effess: This falls under plugin territory. Please contact the plugin support for this. May be they can help you on this.
Regards,
MaheshMahesh
Participant@bono1987: Our themes doesn’t have the dummy data, the theme is already provided with the Demo Data in all the features such as Featured Slider, Featured Content etc. For that either use Reset in Dashboard=> Customize=> Reset All Settings or choose demo data in relevant features.
If you want Dummy pages or post data please refer to the link below:
https://codex.wordpress.org/Theme_Unit_Test
Note: While resetting the theme setting, you may see Invalid error, however, the functionality works fine. This error will be fixed in the next theme update.Regards,
MaheshMahesh
Participant@husker: Aww, sorry about that. Okay, if you want to have more than 20 sliders, you’ll need to modify some code. The simplest way (not-recommended) to do is just edit the core theme file and increase the number. Since, while updating, you’ll lose the changes, you’ll need to make sure you do this change every-time you update the theme.
Other way is really tricky one, you’ll need to remove the current control and add a new one. Please add the following codes in you child theme’sfunctions.php:function catchresponsive_child_customize_register( $wp_customize ) { $wp_customize->remove_control( 'catchresponsive_theme_options[featured_slide_number]' ); $wp_customize->add_control( 'catchresponsive_theme_options[featured_slide_number]' , array( 'active_callback' => 'catchresponsive_is_demo_slider_inactive', 'description' => __( 'Save and refresh the page if No. of Slides is changed (Max no of slides is 25)', 'catch-responsive' ), 'input_attrs' => array( 'style' => 'width: 45px;', 'min' => 0, 'max' => 25, 'step' => 1, ), 'label' => __( 'No of Slides', 'catch-responsive' ), 'priority' => '2.1.4', 'section' => 'catchresponsive_featured_slider', 'settings' => 'catchresponsive_theme_options[featured_slide_number]', 'type' => 'number', ) ); } function child_customzier() { add_action( 'customize_register', 'catchresponsive_child_customize_register' ); } add_action('init', 'child_customzier');Note: This will make max-number of slides to 25, you can adjust it to your desired number in by changing the max value in the above code.
Regards,
Mahesh -
AuthorPosts
