Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@contactcrossfitmonrovia-com: Thank you for using Catch Adaptive Pro. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
media screen and (max-width: 340px) { #logo-icon { width: 50%; } }Regards,
MaheshMahesh
Participant@marianne-undheim: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following codes:
function catchbox_posted_on_pages() { printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date updated" datetime="%3$s" pubdate>%4$s</time></a>', 'catch-box' ), esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); }Next copy, content-page.php file from parent theme to child theme. And add the following line:
<?php catchbox_posted_on_pages(); ?>
Just after<h1 class="entry-title"><?php the_title(); ?></h1>line within the<header>tag.Regards,
MaheshMahesh
Participant@historiegeuldal: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS and add the following CSS:
#header-right-search { display: none; }Regards,
MaheshMahesh
Participant@luismarioochoa: Seems like you are missing a plugin. Please install and activate following plugin and check if it resolves the issue.
https://wordpress.org/plugins/advanced-custom-fields/Regards,
MaheshMahesh
Participant@skynet: I tested on our server and it just worked fine to hide the Header image. Let me know if any problem.
Regards,
MaheshMahesh
Participant@thepilgrim1938gmx-com: In which page is the issue occurring?
Regards,
MaheshMahesh
Participant@kerimitchellgmail-com: Go to Dashboard=> Appearance=> Menus and add desired Categories to the menu. Please check image in the following link:
http://bit.ly/2cofNpGRegards,
MaheshSeptember 19, 2016 at 12:09 pm in reply to: Featured Image not displaying in a particular page #99640Mahesh
Participant@luismarioochoa: Do you mean to hide the content from the slider? If so, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#feature-slider .entry-content { display: none; }Regards,
MaheshMahesh
Participant@arnold: Please add the following CSS:
#promotion-message mark, #promotion-message ins { background: none; } #promotion-message { background-color: #ff00ff; }Note: Please change the color as desired.
Regards,
MaheshMahesh
Participant@robincox: Please upload the image to dropbox or similar and then share the url here.
Regards,
MaheshMahesh
Participant@accucomm: Sorry, forgot
#in the above code, I’ve made the corrections now, it will work please try again.Regards,
MaheshMahesh
Participant@scatmax: If you still mean to justify the text, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.entry-summary p { text-align: justify; }Regards,
MaheshMahesh
Participant@bigoslesli: Just to let you know that new version of Jomsom Pro 1.4 is now available, please update.
Regards,
MaheshMahesh
Participant@skynet: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
@media screen and (max-width: 767px) { #site-header-image { display: none; } }Regards,
MaheshSeptember 18, 2016 at 8:59 pm in reply to: Remove Or Disable Featured Slider On Mobile Version #99601Mahesh
Participant@mataiblis70: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
@media screen and (max-width: 767px) { #main-slider { display: none; } }Regards,
MaheshMahesh
Participantikh1: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s
functions.php, add the following code:function adventurous_footer_meta() { // Translators: used between list items, there is a space after the comma. $categories_list = get_the_category_list( __( ', ', 'adventurous' ) ); // Translators: used between list items, there is a space after the comma. $tag_list = get_the_tag_list( '', __( ', ', 'adventurous' ) ); $date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>', esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date( 'n/d/Y' ) ) ); // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name. if ( $tag_list ) { $utility_text = __( '<span class="on-date">%1$s</span> <span class="in-category">%2$s</span><span class="sep">, </span><span class="in-tag">%3$s</span>', 'adventurous' ); } elseif ( $categories_list ) { $utility_text = __( '<span class="on-date">%1$s</span> <span class="in-category">%2$s</span>', 'adventurous' ); } printf( $utility_text, $date, $categories_list, $tag_list ); }Then go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.entry-header .entry-meta { display: none; }Regards,
MaheshMahesh
Participant@thepilgrim1938gmx-com: Please post in your site url.
Regards,
MaheshMahesh
Participant@luismarioochoa: You are using child theme, please try using parent theme, and check if the issue persist. If not, the issue is within the child theme.
Regards,
Mahesh -
AuthorPosts
