Forum Replies Created
-
AuthorPosts
-
June 8, 2017 at 12:09 am in reply to: Change font style and sizing in Clean Journal Pro Theme #116992
Mahesh
Participant@mmarvel54: In Pro version, it does include feature to change font family for Site title, Content, default font etc. For this option, go to Dashboard=> Appearance=> Customize=> Theme Options=> Font Family. If you want to change fonts and size for p, h1, h2, h3, h4, h5, you can use Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
h1 { font-family: "Times New Roman"; font-size: 30px; } h2 { font-family: "Times New Roman"; font-size: 28px; } h3 { font-family: "Times New Roman"; font-size: 24px; } h4 { font-family: "Times New Roman"; font-size: 20px; } h5 { font-family: "Times New Roman"; font-size: 18px; } p { font-family: "Times New Roman"; font-size: 15px; }
Note: Change the font-family and font-size as desired.
Regards,
MaheshMahesh
Participant@guni: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#featured-content .entry-header .entry-title > a { pointer-events: none; }
Regards,
MaheshMahesh
Participant@masterchess: Do you get any error? Are you using Catch Web Tool plugins’s Catch Updater for theme updates?
Regards,
MaheshJune 7, 2017 at 6:46 am in reply to: The language of the material on the main page (Hero Content and other) does not #116919Mahesh
Participant@paedagogisches-zentrum: Sorry, you’ll need to do one more function in your child theme’s
functions.php
.function clean_education_custom_promotion_headline( $options ) { $output = ''; $title = $options['promotion_headline_title']; $content = $options['promotion_headline_content']; $button_text_1 = $options['promotion_headline_button']; $button_link_1 = $options['promotion_headline_url']; $button_target_1 = $options['promotion_headline_target_1']; $button_text_2 = $options['promotion_headline_button_2']; $button_link_2 = $options['promotion_headline_url_2']; $button_target_2 = $options['promotion_headline_target_2']; $button_one = ''; $button_two = ''; //Checking Button 1 Elements if ( $button_text_1 ) { if ( $button_link_1 ) { //support qTranslate plugin if ( function_exists( 'qtrans_convertURL' ) ) { $button_link_1 = qtrans_convertURL( $button_link_1 ); } } else { $button_link_1 = '#'; } if ( $button_target_1 ) { $button_target_1 = '_blank'; } else{ $button_target_1 = '_self'; } $button_one = '<span class="readmore button-one"><a href="' . $button_link_1 . '" target="' . $button_target_1 . '">' . pll__( esc_html( $button_text_1 ) ) . '</a></span>'; } //Checking Button 2 Elements if ( $button_text_2 ) { if ( $button_link_2 ) { //support qTranslate plugin if ( function_exists( 'qtrans_convertURL' ) ) { $button_link_2 = qtrans_convertURL( $button_link_2 ); } } else { $button_link_2 = '#'; } if ( $button_target_2 ) { $button_target_2 = '_blank'; } else{ $button_target_2 = '_self'; } $button_two = '<span class="readmore button-two"><a href="' . $button_link_2 . '" target="' . $button_target_2 . '">' . pll__( esc_html( $button_text_2 ) ) . '</a></span>'; } if ( $title ) { $title = '<h2 class="section-title">' . pll__( $title ) . '</h2>'; } if ( $content ) { $content = '<p>' . pll__( $content ); if ( '' != $button_one || '' != $button_two ) { $content .= '<span class="promotion-buttons">' . $button_one . $button_two . '</span>'; } $content .= '</p>'; } $output .= $title . $content; return $output; }
Since you are not familiar with programming, here is a working child theme for you.
http://bit.ly/2mv8jYC
If you already have child theme, please delete it and add above one. Then go to Dashboard=> Languages=> String Translations and add string in your desired language.Note:
* This will make promotion headline translatable.
* Don’t forget to put custom promotion headline in Customizer.Let me know if any problem.
If you are having much trouble working with the code, I recommend you to hire a customizer.
Regards,
MaheshMahesh
Participant@smyo2017: For that, go to Dashboard=> Appearance=> Menu and add some Custom Links and put ‘#‘ in Url and desired title in Link text.
Let me know if any problem.
Regards,
MaheshMahesh
Participant@fastrak: Editing the footer content is one of the features of Pro version. I recommend you to upgrade to Pro version.
Regards,
MaheshMahesh
Participant@sziszi: Add the following CSS:
.entry-meta .author.vcard, .entry-meta .last { display: none; } table tr td:nth-child(2) { padding-left: 10px; }
Regards,
MaheshMahesh
Participant@rawikltd: I’ve changed the CSS so that it now applies to search page only. Please use the above CSS.
Regards,
MaheshJune 7, 2017 at 2:20 am in reply to: How to change the color of the three dots of the Featured Slider? #116891Mahesh
Participant@krywen: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.slides-pagination a:hover, .slides-pagination a.current { background-color: #fff000; color: #fff000; } .preloader .pre-bounce1, .preloader .pre-bounce2 { background-color: #fff000; }
Note: Please change the color as desired.
Regards,
MaheshMahesh
Participant@wolpertinger: Just to let you know that the bug has been fixed and the update has been released. Please update. Let me know if any problem.
Regards,
MaheshJune 7, 2017 at 1:34 am in reply to: The language of the material on the main page (Hero Content and other) does not #116887Mahesh
Participant@paedagogisches-zentrum: You can find the detail on how to create a child theme in the link below:
https://catchthemes.com/blog/create-child-theme-wordpress/You must be very careful when creating the child theme. Any minor error in
functions.php
may break your website.Regards,
MaheshMahesh
Participant@rodeboy: Yes, it does seem strange, but the CSS is from the plugin itself. Thank you for your appreciation.
I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review? Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.
https://wordpress.org/support/theme/rock-star/reviews/#postform
Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.Regards,
MaheshMahesh
Participant@dnelson503: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
body, button, input, select, textarea { font-size: 14px; } h2 { font-size: 27px; }
Let me know if any problem. Please post in your site url.
Regards,
MaheshMahesh
Participant@lizzie: The update is just released. You can update your copy of the theme. Let me know if any problem.
Regards,
MaheshMahesh
Participant@fireflywebs: Add the following CSS:
#masthead .wrapper { opacity: unset; }
Its because of the following CSS:
#masthead .wrapper { opacity: 0.9; }
Mahesh
Participant@wolpertinger: There has been a small bug in the theme, this will be fixed in the next update that will be released soon. We’ll let you know as soon as the update is released.
Regards,
MaheshMahesh
Participant@masterchess: Let me know if any problem.
Regards,
MaheshMahesh
Participant@rawikltd: Add the following CSS:
.search-results #primary .post.has-post-thumbnail.hentry { position: relative; } .search-results #primary .post.hentry.has-post-thumbnail .entry-header { position: absolute; top: -50px; } .search-results #primary .post.has-post-thumbnail.hentry .featured-image { margin-top: 60px; }
Regards,
MaheshMahesh
Participant@sziszi: Please add the following CSS:
#main .entry-meta .entry-date { display: none; } .post .post-article { width: 95%; }
Which one is the category? And please post in the url with table.
Regards,
MaheshMahesh
Participant@crazychaosgmaial-com: Individual header image for individual post/page is featured in the theme, but not for category. If you want to have it for categories, you’ll need to customize the theme further. I recommend you to hire a customizer.
For the post/page featured header image please check the theme instruction in the link below:
https://catchthemes.com/theme-instructions/fabulous-fluid-pro/#header-imageRegards,
Mahesh -
AuthorPosts