Home Forums Search Search Results for 'css'

Viewing 10 results - 1 through 10 (of 3,131 total)
  • Author
    Search Results
  • #44631
    yunitasanjaya
    Supported

    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

    #44369
    rosamart
    Participant

    Hi janstudio,

    I recently removed the code .footer__bot { display: none !important; } and the copyright text is now appearing in the footer as expected. However, I’m using the WP Rocket cache plugin, and the text only shows up in the admin view.

    Since I’m using WP Rocket to minify CSS and JavaScript for better performance, I’d like to know if it’s possible to exclude specific code snippets from minification.

    In addition, I’ve encountered two other issues:

    WooCommerce Product Images: Product images only appear when hovering the mouse cursor.
    Load More Button: The “Load More” icon displays, but the text is missing.
    I’ve provided website access credentials (login and password) to help troubleshoot these issues.

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

    In reply to: Scroll to top

    Hi Rosamart,

    Sorry for late reply.

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

    #jas-backtop {
    	display: none !important;
    }

    Kind regards

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

    #44338

    Topic: Wp rocket cache plugin

    in forum Claue
    rosamart
    Participant

    Hello Janstudio,

    I’m using the WP Rocket cache plugin on my website built with the Claue theme. I’d like to confirm compatibility and ensure smooth operation.

    Specifically, I’m interested in using the following WP Rocket features:

    * Add missing image dimensions
    * Image lazy load
    * Enable for CSS background images
    * Minify CSS, HTML, and JavaScript

    Could you please confirm if these features are compatible with the Claue theme and if there are any known issues or specific settings I should be aware of? I add two screenshot link for refer.

    Thank you for your time and assistance.

    Sincerely,

    Rosa Mart

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

    Hi,

    1. It now your site using WPML it will auto disable currency switcher included with theme, you need use currency switcher of WPML

    2. Please add below code to Claue > Theme Option > General layout > Custom CSS

    #jas-wrapper {
    	overflow-x: initial !important;
    }

    Kind regards

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

    #44239

    In reply to: questions about theme

    I added code to Claue > Theme OPtion > General Layout > Custom CSS in your staging site. Please check on it.

    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,131 total)