Forum Replies Created

Viewing 20 posts - 2,701 through 2,720 (of 4,903 total)
  • Author
    Posts
  • in reply to: Logo Icon issue IPhone 6 and smaller breaks #99659
    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,
    Mahesh

    in reply to: How to add publication date on pages #99649
    Mahesh
    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,
    Mahesh

    in reply to: background color in widget promotion headline #99648
    Mahesh
    Participant

    @arnold: Seems like you’ve already fixed this. Have a nice day!

    Regards,
    Mahesh

    in reply to: Remove search-bar fromheader #99647
    Mahesh
    Participant

    @historiegeuldal: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS and add the following CSS:

    #header-right-search {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Fatal Error In Blog Page #99645
    Mahesh
    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,
    Mahesh

    in reply to: Remove header image from mobile #99644
    Mahesh
    Participant

    @skynet: I tested on our server and it just worked fine to hide the Header image. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: 2 images #99643
    Mahesh
    Participant

    @thepilgrim1938gmx-com: In which page is the issue occurring?

    Regards,
    Mahesh

    in reply to: Select a post category for a blog page #99641
    Mahesh
    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/2cofNpG

    Regards,
    Mahesh

    in reply to: Featured Image not displaying in a particular page #99640
    Mahesh
    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,
    Mahesh

    in reply to: Bullet point, bullet color and left margin #99639
    Mahesh
    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,
    Mahesh

    in reply to: Featured Content Image and Title in one Line #99638
    Mahesh
    Participant

    @robincox: Please upload the image to dropbox or similar and then share the url here.

    Regards,
    Mahesh

    in reply to: Turn Featured Slider off only on smartphones #99637
    Mahesh
    Participant

    @accucomm: Sorry, forgot # in the above code, I’ve made the corrections now, it will work please try again.

    Regards,
    Mahesh

    in reply to: Justify Excerpts #99630
    Mahesh
    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,
    Mahesh

    in reply to: WooCommerce Side Bar #99628
    Mahesh
    Participant

    @bigoslesli: Just to let you know that new version of Jomsom Pro 1.4 is now available, please update.

    Regards,
    Mahesh

    in reply to: Remove header image from mobile #99604
    Mahesh
    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,
    Mahesh

    in reply to: Header Image Slider #99603
    Mahesh
    Participant

    @ffwa: I recommend you to hire a customizer for this.

    Regards,
    Mahesh

    in reply to: Remove Or Disable Featured Slider On Mobile Version #99601
    Mahesh
    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,
    Mahesh

    in reply to: post meta item locations #99600
    Mahesh
    Participant

    ikh1: 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,
    Mahesh

    in reply to: 2 images #99598
    Mahesh
    Participant

    @thepilgrim1938gmx-com: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Fatal Error In Blog Page #99597
    Mahesh
    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

Viewing 20 posts - 2,701 through 2,720 (of 4,903 total)