Home Forums Themes Support Claue Blog colors

Viewing 3 reply threads
  • Author
    Posts
    • #28295

      Hi, how can we change the color on the black box on the blog post overview?

      See attached screenshot

      Attachments:
      You must be logged in to view attached files.
    • #28308

      Hi,

      Please add below code to Claue > Theme Option > General Layout > Custom CSS

      .jas-blog-slider .post-thumbnail > div,
      .inside-thumb {
      	background: rgba(0, 0, 0, .8);
      }

      And change 0,0,0 with your RGB color and 0.8 as opacity of color from 0.0 to 1.0

      Kind regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #28453

      Great, thank you.

      How can we change the layout of the text on the box?

      For example, we would like the post title to be larger and to the left.
      The the dato below.

      Author, category and comments to the right.

    • #28461

      Hi,

      Please add below code to claue-child > functions.php

      if ( ! function_exists( 'jas_claue_post_thumbnail' ) ) {
      	function jas_claue_post_thumbnail() {
      		?>
      			<div class="post-thumbnail pr mb__25">
      				<?php if ( has_post_thumbnail() ) : ?>
      					<a href="<?php esc_url( the_permalink() ); ?>" aria-hidden="true">
      						<?php the_post_thumbnail( 'post-thumbnail', array( 'alt' => get_the_title() ) ); ?>
      					</a>
      				<?php endif; ?>
      				<div class="pa inside-thumb tc cg">
      					
      					<?php jas_claue_post_title(); ?>
      					<?php jas_claue_posted_on(); ?>
      <?php jas_claue_post_meta(); ?>
      				</div>
      			</div>
      		<?php
      	}
      }

      And add below code to Claue > Theme Option > General Layout > Custom CSS

      .post-title {
      	text-align: left;
      	font-size: 16px;
      }
      .inside-thumb {
      	text-align: left;
      }
      .post-meta.fs__12 {
      	text-align: right;
      }

      Your support will expired soon. Could you please add renew support at https://themeforest.net/item/claue-clean-minimal-woocommerce-theme/18929281

      Thanks

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

Viewing 3 reply threads

You must be logged in to reply to this topic.