Home Forums Search Search Results for 'css'

Viewing 10 results - 1 through 10 (of 3,136 total)
  • Author
    Search Results
  • #44799

    Hi,

    It has option to upload category image by edit product category and upload thumbnail https://tppr.me/5FCVlM

    It you only want change color please add below code to Claue > Theme option > general layout > Custom CSS

    .page-head::before {
    	background:#000;
    }

    and change #000 to your color code

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

    #44769

    Hi,

    Please add below code to Custom CSS

    .product-countdown .product-info h3 {
    	width: auto;
    	overflow: inherit;
    }
    .product-countdown .product-info {
    	padding: 20px;
    	background: rgba(0,0,0,0.8);
    	max-width: calc(100% - 20px);
    	text-align: center;
    }
    .product-countdown .product-info h3 a {
    	color: #fff;
    }

    Kind regards

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

    #44759

    2. Please add below code to Claue > Theme Option > General Layout > Custom CSS if you want add background below Promotion text

    .jas-promotion.bottom .pa {
    
    	background: rgba(0,0,0,0.8);
    	padding: 20px;
    }

    and add below code to make the text thicker

    .jas-promotion.bottom .pa h3, 
    .jas-promotion.bottom .pa h4 {
    	font-weight: bold;
    }

    2. add below code to make background cover the text ” ‘Domtoren in the mist’

    .badge span.0nsale {
    width: 145px;
    }

    Kind regards

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

    #44732

    Hi,

    It doesn’t have option to use different size for each column, you need custom css to customize.

    Kind regards

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

    #44731

    Hi,

    It doesn’t have option to use different size for each column, you need custom css to customize.

    Kind regards

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

    #44631
    yunitasanjaya
    Support Expired

    Hi, 1. If you import sample data it will clean your exist data.Do not do it if you want keep your exist content 2. You can import .xml file what I guided you, You will have pages like our demo, and you can change sample homepage with your content and set the page as new homepage that you want. Kind regards

     

    Hello Harry,

    An error occurred when I wanted to install the theme from the file to which you sent me the link (claue.WordPress.2025-02-28.xml_.zip).

    “The package could not be installed. The theme is missing the style.css stylesheet. Theme installation failed.”

    Please see the attached file for the screenshot. Thank you.

    If you could help me faster, please help me install the theme on my website directly. It will save a lot of time and energy for you and me to solve this problem. Thank you so much in advance.

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

    In reply to: Buttons on products

    Hi Isablle,

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

    .product-image:hover .product-btn {
    	top: 60%;
    }

    and increase 60 as you want.

    Kind regards

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

    #44545
    [Resolved]

    Topic: Header Problems

    in forum Claue
    IsaScom
    Participant

    Hi

    When I choose the header with menu at the top and logo in the middle, what my client wants is not the right menu that appears. It is a menu that does not exist for me…
    See the attached screenshot (Header menu)

    On the other hand, my client wanted a green background for the top menu. But when I add the css
    .middle-xs {
    background-color: #d1ded0;
    }
    This puts a green background on other parts of the theme : under the store filters and under the cart promo codes.
    See the attached screenshot (Header background color)

    Thank you for help

    Best regards.
    Isabelle

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

    Hi,

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

    add_action( 'wp_head', 'remove_my_action' ); 
    function remove_my_action(){
    // Remove old position of category description
        remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
        remove_action( 'woocommerce_before_main_content', 'jas_claue_wc_page_head', 15 );
        add_action('woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 5 );
    }
    
    function jas_claue_child_wc_page_head() {
        if ( ! cs_get_option( 'wc-enable-page-title' ) || ( class_exists( 'WCV_Vendors' ) && WCV_Vendors::is_vendor_page() ) ) return;
    
        $title = cs_get_option( 'wc-page-title' );
    
        $output = '<div class="page-head pr tc"><div class="jas-container pr">';
            if ( is_search() ) {
                $output .= '<h1 class="mb__5 cw">' . sprintf(__( 'Search Results for: %s', 'claue' ), '<span>' . get_search_query() . '</span>' ) . '</h1>';
            } elseif ( is_shop() ) {
                $output .= '<h1 class="mb__5 cw">' . esc_html( cs_get_option( 'wc-page-title' ) ) . '</h1>';
                $output .= '<p class="mg__0">' . do_shortcode( cs_get_option( 'wc-page-desc' ) ) . '</p>';
            } else {
                $output .= '<h1 class="cw">' . single_cat_title( '', false ) . '</h1>';
            }
            ob_start();
            $output .= ob_get_clean();
        $output .= '</div></div>';
    
        echo wp_kses_post( $output );
    }
    add_action( 'woocommerce_before_main_content', 'jas_claue_child_wc_page_head', 15 );

    and below code to Claue > Theme Option > General Layout > Custom CSS

    .term-description {
    	display: block;
    	width: 100%;
    	max-width: 1170px;
    	margin: 30px auto;
    }

    Kind regards

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

    #44411

    In reply to: Website Preview

    Hi Maria,

    I see you added custom CSS, max-width: 700px but don’t know where you added. Please remove custom CSS you added.

    Now your site has error code, can you try deactivate plugin one by one and check the error.

    Kind regards

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

Viewing 10 results - 1 through 10 (of 3,136 total)