Home Forums Search Search Results for 'css'

Viewing 10 results - 3,031 through 3,040 (of 3,131 total)
  • Author
    Search Results
  • #1973

    In reply to: Some questions

    Hi,

    Thank you for purchase!

    1. Normally after you import sample data all images will be replace with place holder image and some images will link to our site. Did you set permission for upload folder before import sample data?

    – gecko-child to help you customize code and in future you can update parent theme without losing your custom code

    2. Because license  and copyright of images so we can’t include full data option on install sample data

    3. You can hide collapse menu on header on desktop view by add custom css in

    JanStudio > Theme Option > General Layout > Custom CSS or on gecko-child > style.css

    @media only screen and (min-width: 1025px) { .jas-push-menu-btn { display: none; } }

    4. You can hide search by add custom css

    .jas-action a.sf-open { display: none;}

    5. In meta slider:

    – You copy text in general tab

    – You click “Add Slide” on top right to add new image

    – Paste text you copy to new slide you have added and remove existing slide.

    Best regards

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

    #1971
    para_bellum
    Participant

    When a user clicks “Add to Cart”, the Mini Cart appears and the rest of the page is darkening.  How can I customize the percentage of opacity (so it isn’t as dark) in the CSS?

    #1954

    Hi,

    We check our theme and saw it working normal with Body Background Color, Header Background Color . You can update our theme to latest version 1.3.2.

    For Footer Background Color you can fix by add custom css

    #jas-footer::before { display: none;}

    Best regards

     

     

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

    #1826

    Hi,

     

    You can add custom CSS code in JanStudio > Theme Option > General Layout > Custom CSS

    @media only screen and (max-width: 736px) {

    .products.jas-row .jas-col-xs-12 {flex-basis: 50%; max-width: 100%;}

    }

    Best regards,

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

    #1822
    ehmud
    Participant

    Hi, can you help setting up 2 products per row on mobile devices. I tried few css classes with {width:48%} but it didn’t help. Can you tell exact css classes used for products on mobile please?

    Thanks

    #1799

    In reply to: How to change text

    Hi,

    You can change by add custom code in JanStudio > Theme Options > General Layout > Custom CSS

    html[lang=”es-ES”] .product-category h3::before {
    content: “Shop now”;
    }

    And change “Shop Now” to your language

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

    ckitso
    Participant

    Hi
    I was wondering if you could assist me with the following query regarding child themes, future updates and potentially adding some changes to the core code to make over riding child themes a little easier without having to make changes to the main theme.
    Effectively I have created a highly customized child theme for a client based on your Gecko theme. But in order to over ride some of the functions and file paths and files I needed to make some core changes to the main theme.
    Which I have noted down so that I can re add them after each update to the main theme. This is obviously a bit tedious.

    So I was wondering if you could look at some of the changes I have suggested and possibly add them to future updates. As well as provide a little insight into the reason for doing certain things so that I can better adapt my code.

    To summarize what I have done and still plan to do is the as follows:

    The main function.php I added support for the new wordpress 4.7 get_theme_file_path() and get_theme_file_uri() which replaced get_template_directory() and get_template_directory_uri() respectively when defining ‘JAS_GECKO_PATH’ and ‘JAS_GECKO_URL’

    I subsequently changed all occurrences of get_template_directory() get_template_directory_uri() in the various core admin and vendor files.

    This allows me to replace a lot of files and js simply by copying the files into my child theme. This reduces the need to de_enque and re_enque files via the child theme function.php which is convenient and reduces the number of php calls etc.  But also allows me to change certain files and functions that I otherwise wouldn’t have been able to without changing them in the parent file, particularly some of the vendor files.

    As a matter of interest is there a reason why you use JAS_GECKO_PATH/ JAS_GECKO_URL in some of the files but then directly call get_template_directory()and get_template_directory_uri() in others. For example action.php uses add_editor_style( get_template_directory_uri() . ‘/assets/css/editor-style.css’ ); but further down you use JAS_GECKO_URL. This is also evident in the cs_framework.php file.

    The reason I ask is that I know adding the new WordPress 4.7 functions will break backwards compatibility unless you add additional code like the example below to the theme so I understand if you are hesitant to do so.
    if(!function_exists(‘get_theme_file_uri’)){
    function get_theme_file_uri( $file = ” ) {
    $file = ltrim( $file, ‘/’ );
    if ( empty( $file ) ) {
    $url = get_stylesheet_directory_uri();
    } elseif ( file_exists( get_stylesheet_directory() . ‘/’ . $file ) ) {
    $url = get_stylesheet_directory_uri() . ‘/’ . $file;
    } else {
    $url = get_template_directory_uri() . ‘/’ . $file;
    }
    return apply_filters( ‘theme_file_uri’, $url, $file );
    }
    }

    But would it not be possible to change out all the places where you have used get_template_directory() and get_template_directory_uri() and replace these with JAS_GECKO_PATH/ JAS_GECKO_URL. (Unless there is a reason you haven’t done so,  then could you let me know so I understand possible issues I could face in future.) This will allow for consistency but also mean that users who wish to use the new WP4.7 functions can simply change the function.php path definitions in the core file. So they only need to change one file when updating.

    Please could you let me know if this is possible or if the theme devs have an email address I can use to discuss it a bit further by way of code examples etc.

    Thanks again for a great theme and look forward to your reply.

    #1775

    Hi,

    You can delete related portfolio by add custom css

    .single-portfolio  #jas-content .jas-container.mb__60 + .jas-container.mb__60 {display:none;}

    Best regards

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

    #1773

    In reply to: Customization issues

    You can add custom CSS in JanStudio > Theme Option > General Layout > Custom CSS

    .product-attribute { max-width: 230px; }

    Can you take a time to help us rate for our theme 5 stars at https://themeforest.net/downloads, that will help us in sale.

    Thank you very much!

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

    #1683
    This reply has been marked as private.
Viewing 10 results - 3,031 through 3,040 (of 3,131 total)