Home Forums Search Search Results for 'css'

Viewing 10 results - 1,191 through 1,200 (of 3,138 total)
  • Author
    Search Results
  • #27676

    In reply to: Image issues

    Hi,

    1. It only one menu can assign to primary menu. I recommend create new menu ” Mobile Menu” and assign to Primary menu

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

    .jas-menu ul li#menu-item-14832 a, .jas-menu ul li#menu-item-1911 a {color: #222;}

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

    .jas-social i {
    	font-size: 24px;
    }

    Kind regards

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

    #27649

    Hi,

    1. I help you fix checkout button on related product.

    2. Please add below code to Claue > Theme Option > General Layout > Custom CSS to fix date

    .price .WooZone-price-info {
    	display: none;
    }

    Regards

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

    #27631

    Hi,

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

    .product-info h3.product-title {font-size: 14px;}
    .product-info div p {font-size: 12px;}

    And change 14 and 12 with your number

    Regards

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

    #27587

    In reply to: Optimisations

    1. so I have added code to child theme functions.php

    on my nginx server config I also have this code

    pagespeed EnableFilters combine_css;
    pagespeed EnableFilters rewrite_css;
    pagespeed EnableFilters prioritize_critical_css;
    pagespeed EnableFilters inline_css,flatten_css_imports;
    pagespeed EnableFilters inline_javascript;
    pagespeed EnableFilters combine_javascript;

    will it be OK to use with your code?

    2. is it correct I have copied all content from  /wp-content/themes/claue/assets/vendors/font-awesome/fonts   to /wp-content/themes/claue-child/fonts

    3. and could you please show how to do this and call in style.css file.  in which file what shall I edit?

    thank you

    #27579

    In reply to: Optimisations

    No,

    Please included to your child theme and put in “fonts” folder and call in style.css file.

    Regards

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

    #27565

    Hi,

    Please use right mouse click on the section to know id of section http://prntscr.com/ltgof8

    After that add below code to Theme Settings > Custom Code > Custom CSS http://prntscr.com/ltgp3z

    #shopify-section-1516036229347 {
    	background: #000;
    	color: #fff;
    	padding: 0 0 20px;
    }
    #shopify-section-1516036229347 .box__content--title {
    	color: #fff;
    }

    And change shopify-section-1516036229347 with your site id section.

    Regards

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

    #27561

    In reply to: Optimisations

    This reply has been marked as private.
    #27554

    Hi Leandro,

    Please go to Claue > Theme Option > WooCommerce > Product Listing Settings > Enable add to cart button > On

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

    .product-btn {
    	top: auto;
    	left: auto;
    	-webkit-transform: inherit;
    	transform: inherit;
    	opacity: 1;
    	visibility: visible;
    	right: 0;
    	bottom: 0;
    }

    and download attach file, extract and put in claue-child > woocommerce

    Regards

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

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

    #27552

    In reply to: Optimisations

    Hi Mag,

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

    if ( ! function_exists( 'jas_claue_enqueue_scripts' ) ) {
    	function jas_claue_enqueue_scripts() {
    		// Google font
    		wp_dequeue_style( 'jas-font-google', jas_claue_google_font_url() );
    
    		// Font Awesome
    		wp_dequeue_style( 'font-awesome' );
    		wp_dequeue_style( 'yith-wcwl-font-awesome' );
    		wp_dequeue_style( 'fontawesome', JAS_CLAUE_URL . '/assets/vendors/font-awesome/css/font-awesome.min.css' );
    
    		// Font Stroke
    		wp_enqueue_style( 'font-stroke', JAS_CLAUE_URL . '/assets/vendors/font-stroke/css/font-stroke.min.css' );
    
    		// Slick Carousel
    		wp_enqueue_style( 'slick', JAS_CLAUE_URL . '/assets/vendors/slick/slick.css' );
    		wp_enqueue_script( 'slick', JAS_CLAUE_URL . '/assets/vendors/slick/slick.min.js', array(), false, true );
    
    		// Magnific Popup
    		wp_enqueue_script( 'magnific-popup', JAS_CLAUE_URL . '/assets/vendors/magnific-popup/jquery.magnific-popup.min.js', array(), false, true );
    
    		// Isotope
    		wp_enqueue_script( 'isotope', JAS_CLAUE_URL . '/assets/vendors/isotope/isotope.pkgd.min.js', array(), false, true );
    
    		// Scroll Reveal
    		wp_enqueue_script( 'scrollreveal', JAS_CLAUE_URL . '/assets/vendors/scrollreveal/scrollreveal.min.js', array(), false, true );
    
    		// jQuery Countdown
    		wp_enqueue_script( 'countdown', JAS_CLAUE_URL . '/assets/vendors/jquery-countdown/jquery.countdown.min.js', array(), false, true );
    
    		// Enqueue script on single product
    		if ( function_exists( 'is_product' ) && is_product() ) {
    			wp_enqueue_script( 'sticky-kit', JAS_CLAUE_URL . '/assets/vendors/jquery-sticky-kit/sticky-kit.min.js', array(), false, true );
    		}
    
    		if ( class_exists( 'WooCommerce' ) ) {
    			wp_enqueue_script( 'wc-add-to-cart-variation' );
    			wp_enqueue_script( 'jquery-ui-autocomplete' );
    
    			// Zoom image
    			if ( is_singular( 'product' ) && cs_get_option( 'wc-single-zoom' ) && !wp_is_mobile() ) {
    				wp_enqueue_script( 'zoom' );
    			}
    		}
    
    		// Main scripts
    		wp_enqueue_script( 'jas-claue-script', JAS_CLAUE_URL . '/assets/js/theme.js', array( 'jquery', 'imagesloaded' ), '', true );
    
    		// Inline script
    		wp_add_inline_script( 'jas-claue-script', jas_claue_custom_js() );
    
    		// Custom localize script
    		wp_localize_script( 'jas-claue-script', 'JAS_Data_Js', jas_claue_custom_data_js() );
    
    		// Responsive stylesheet
    		wp_enqueue_style( 'jas-claue-animated', JAS_CLAUE_URL . '/assets/css/animate.css');
    
    		// Main stylesheet
    		wp_enqueue_style( 'jas-claue-style', get_stylesheet_uri() );
    
    		// RTL stylesheet
    		if ( is_rtl() ) {
                wp_enqueue_style('jas-claue-rtl', JAS_CLAUE_URL . '/assets/css/rtl.css');
            }
    
    		// Inline stylesheet
    		wp_add_inline_style( 'jas-claue-style', jas_claue_custom_css() );
    
    		if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
    			wp_enqueue_script( 'comment-reply' );
    		}
    
    		do_action( 'claue_scripts');
    	}
    }
    add_action( 'wp_enqueue_scripts', 'jas_claue_enqueue_scripts', 10 );

    And download google font, font-awesome and include to child theme.

    Regards

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

    #27547

    In reply to: LookBook Issue

    Hi,

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

    @media only screen and (max-width: 667px) {
    	.pin-maker.pm-slick {
    		overflow: visible;
    	}
    }

    Regards

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

Viewing 10 results - 1,191 through 1,200 (of 3,138 total)