Home Forums Search Search Results for 'css'

Viewing 10 results - 211 through 220 (of 3,138 total)
  • Author
    Search Results
  • Hi Trevor,

    Did you edit something? I see the site it now not load file slick.css and it loaded file jas-claue-parent-style.min.css.

    If you want minify CSS file i recommend use plugin Autoptimize https://wordpress.org/plugins/autoptimize/

    Kind regards

    • This reply was modified 5 years ago by Harry.

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

    #40603

    Topic: Title page color change

    in forum Claue
    realmonkey
    Participant

    Hi Harry,

    I’ve changed the title page grey background color with css

    #jas-footer::before, .page-head::before { display: none; }

    now the title is not visible because in white color, how can I change title color only ?

    Thank you

     

    #40602

    Hi Pinarbasicaner,

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

    .products.jas-row .jas-col-md-3 {margin-bottom: 0; padding-left: 0; padding-right: 0;}
    @media only screen and (max-width: 480px) {
    .products .jas-col-xs-6:nth-child(2n), .products.jas-masonry .jas-col-xs-6:first-child, .products.jas-masonry .jas-col-xs-6:nth-child(2n+1) {
    	padding-left: 0;
    }
    .products .jas-col-xs-6:first-child, .products .jas-col-xs-6:nth-child(2n+1), .products.jas-masonry .jas-col-xs-6:nth-child(2n) {
    	padding-right: 0;
    }}

    Kind regards

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

    #40600

    Hi Tom,

    You can change in Theme Option > Color Scheme > Secondary Color or add custom CSS

    a {color: #222 !important;}

    Kind regards

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

    #40579

    In reply to: Moving Page-header

    Please change code to

    /* move category description below products */
    add_action( 'wp_head', 'remove_my_action' ); 
    function remove_my_action(){
        remove_action( 'woocommerce_before_main_content', 'jas_claue_wc_page_head', 15 );
    }
    
    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 {
                // Remove old position of category description
                remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
                $output .= '<h1 class="cw">' . single_cat_title( '', false ) . '</h1>';
                //$output .= do_shortcode( category_description() );
                add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 40 );
                add_action( 'woocommerce_after_shop_loop', 'woocommerce_product_archive_description', 40 );         
            }
            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 add below code to claue-child > style.css

    .term-description {
    	display: block;
    	width: 100%;
    	max-width: 1170px;
    	margin: 30px auto;
    }
    .page-head {
    	padding: 20px 0 10px;
    }
    .page-head h1 {
    	color: #222;
    }
    .page-head::before {
    	background: #f6f6f8;
    }

    Kind regards

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

    #40574

    In reply to: Moving Page-header

    Hi,

    Please try change code to

    /* move category description below products */
    add_action( 'wp_head', 'remove_my_action' ); 
    function remove_my_action(){
        remove_action( 'woocommerce_before_main_content', 'jas_claue_wc_page_head', 15 );
    }
    
    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 {
                // Remove old position of category description
                remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
                $output .= '<h1 class="cw">' . single_cat_title( '', false ) . '</h1>';
                $output .= do_shortcode( category_description() );       
            }
            ob_start();
            $output .= ob_get_clean();
        $output .= '</div></div>';
    
        echo wp_kses_post( $output );
    }
    add_action( 'woocommerce_after_main_content', 'jas_claue_child_wc_page_head', 15 );

    and add below code to claue-child > style.css

    .term-description {
    	display: block;
    }

    Kind regards

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

    #40560

    Hi RealMonkey,

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

    .fa-facebook::before {
    	content: "\f09a" !important;
    }
    .fa.fa-facebook {
    	font-family: 'FontAwesome' !important;
    }

    Kind regards

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

    #40547

    Hi,

    Please change code to

    global $woocommerce;
    echo '<a class="cb chp" href="' . esc_url( wc_get_cart_url()) . '" title="' .  esc_html__( 'View your shopping cart', 'gecko' ) . '"><i class="pe-7s-shopbag"></i>';
    echo '<span class="pa count bgb br__50 cw tc">' . esc_html( $woocommerce->cart->get_cart_contents_count() ) . '</span>';
    echo '</a>';
    echo wp_kses_post( WC()->cart->get_cart_subtotal() );

    and add below code to gecko-child > style.css

    .jas-action .count {
    	width: 20px;
    	height: 20px;
    	font-size: 9px;
    	line-height: 20px;
    	left: 16px;
    	top: 3px;
    }

    Kind regards

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

    AndresBuitrago
    Participant

    This Is Andres

    im having trouble with the theme

    I have an error with the theme

    https://fajascanela.com/wp-content/themes/claue/assets/css/owl.carousel.min.css

    It has an error when its charging also: the botton with the fast purchase is not showing and the units the number is not in the center when you see the product

     

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

    hello!

    to regenerate the problem. visit this url (using mobile device/small screen):

    scroll to the bottom and click the ‘load more’ button.

    scroll down. there will be products which aren’t aligned to the items above and below f it.

    these products doesn’t have a true (css left value)

     

    Attachments:
    You must be logged in to view attached files.
Viewing 10 results - 211 through 220 (of 3,138 total)